Page 1 of 1

Stopping MySQL database server: mysqld failed!

Posted: Thu Mar 05, 2015 8:19 pm
by mister_v
Hi,

I have a problem with stopping mysql server.
I tried to stop it with

Code: Select all

/etc/init.d/mysql stop
as root; but it didn't work.

I get the error:

Code: Select all

Stopping MySQL database server: mysqld failed!
And it didn't stop, Why?

Re: Stopping MySQL database server: mysqld failed!

Posted: Thu Mar 05, 2015 8:29 pm
by chris
I had a similar problem. I found that

Code: Select all

 mysqladmin -u root -p shutdown
stops the server.

If it doesn't work ,you can kill the process:

Code: Select all

sudo kill [processid]
But it might be not save...