MySQL Runaway Process

Last Updated: Feb. 17th 2022 at 7:25pm Tags: blog mysql

Here are the commands to stop a run away process.

It’s really annoying when a mysql processes gets stuck or runs away. Here are the commands to stop a run away process, after you have logged into mysql.

SHOW PROCESSLIST;

will show you the list of running processes, then to kill the process run

KILL thread_id;

Reference

Comments

You need to login to comment.