[SOLVED] MySQL DROP DATABASE taking so long?
To check what is blocking the DROP DATABASE command, run the following command;
#mysqladmin processlist -u root -p
You can see the query id 50, 200 and 207 is blocking the dropping of koha_library.
Use mysql to terminate the query;
#mysqladmin kill 50
Repeat the termination for other IDs.
Comments
Post a Comment