stop mysql

  1. K

    How to start/stop MySQL service in Linux VPS?

    To manage MySQL service it is must to have root SSH access. To stop MySQL service you can run below command: service mysql stop OR /etc/init.d/mysql stop To start MySQL service you can run below command service mysql start OR /etc/init.d/mysql start To restart MySQL service you can run...
  2. K

    Steps to start and stop Mysql server

    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: /etc/init.d/mysql start Similarly, you can run below command to stop mysql server: /etc/init.d/mysql stop In cpanel server your restart script location is...
Top