1 Answer
Try using the UNIX lsof command to see which program has the lock
lsof | grep mysql
Try to run lsof on the lock itself
lsof /var/lock/subsys/mysql
Then remove lock
rm /var/lock/subsys/mysql
Your Answer
x