database

How do I kill a MySQL process?

To kill a process in MySQL, you can login to the database and do the following:

show processlist;
or
show processlist\G;

Find the process you would like to kill and kill it using the kill command.

kill

Click to comment

Leave a Reply

Your email address will not be published. Required fields are marked *

To Top