Steps to start and stop Mysql server

kumkumsharma

Administrator
Staff member
You can find the start/stop scripts in the /etc/init.d location in your server.

You can run below command to start your Mysql:

Code:
/etc/init.d/mysql start
Similarly, you can run below command to stop mysql server:

Code:
/etc/init.d/mysql stop
In cpanel server your restart script location is /scripts/restartsrv

You can run this command to restart your Mysql server:

Code:
/scripts/restartsrv/ mysql
 
Top