Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How does AWS RDS for MySQL terminate a session

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

Editor to share with you how to terminate the session of AWS RDS for MySQL, I believe most people do not know much about it, so share this article for your reference, I hope you can learn a lot after reading this article, let's go to know it!

Mysql.rds_kill_query_id

Terminates the query that runs against the MySQL or MariaDB server.

Grammar

CALL mysql.rds_kill_query_id (queryID)

Parameters.

QueryID

Round number. The identity of the query that will be terminated.

instructions

To terminate a query running against the MariaDB server, use the mysql.rds_kill_query_id procedure and pass in the ID of the query. To get

Fetch the query ID as follows:

SELECT USER, HOST, COMMAND, TIME, STATE, INFO, QUERY_ID FROM

INFORMATION_SCHEMA.PROCESSLIST WHERE USER ='

The following example terminates a query with a query ID of 11195102:

Call mysql.rds_kill_query_id (11195102)

Statements for batch kill session:

Select concat ('CALL mysql.rds_kill ();', id,';') from information_schema.processlist where user='test'

Select concat ('CALL mysql.rds_kill (', trx_mysql_thread_id,');') from information_schema.innodb_trx

CALL mysql.rds_kill (11195230)

CALL mysql.rds_kill (11195102)

CALL mysql.rds_kill (11195114)

CALL mysql.rds_kill (11195108)

CALL mysql.rds_kill (11195179)

CALL mysql.rds_kill (11195224)

CALL mysql.rds_kill (11195214)

CALL mysql.rds_kill (11194577)

CALL mysql.rds_kill (11195476)

CALL mysql.rds_kill (11194995)

CALL mysql.rds_kill (11195187)

CALL mysql.rds_kill (11195022)

CALL mysql.rds_kill (11195319)

The above is all the contents of the article "how to terminate a session with AWS RDS for MySQL". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report