mysql error

The_cobra666

Verified User
Joined
Jan 6, 2006
Messages
105
Location
Belgium
-bash-3.00# service mysqld stop
ERROR! MySQL PID file could not be found!
-bash-3.00# /etc/rc.d/init.d/mysqld stop
ERROR! MySQL PID file could not be found!
-bash-3.00# /etc/rc.d/init.d/mysqld restart
ERROR! MySQL PID file could not be found!
Starting MySQL................................... ERROR!
-bash-3.00#


I can't start it up again :mad:, and I didn't even stop it :( it's still running according to the directadmin panel :(
 
killall -9 mysql

or

ps xua | grep mysql | awk '{print $2}' | xargs kill
 
Back
Top