How to restart mysql server through SSH
CentOS/RHEL/Fedora/Scientific Linux version 4.x/5.x/6.x or older users
The syntax is:
### To start ###
service mysqld start
# OR
/etc/init.d/mysqld start
### To stop ###
service mysqld stop
# OR
/etc/init.d/mysqld stop
### To restart ###
service mysqld restart
# OR
/etc/init.d/mysqld restartCentOS/RHEL/Fedora/Scientific Linux version 7.x or newer users
The syntax is as follows to start mariadb/mysql server:
## mariadb ##
systemctl start mariadb
## mysql
systemctl start mysqldThe syntax is as follows to stop mariadb/mysql server:
## mariadb ##
systemctl stop mariadb
## mysql
systemctl stop mysqldThe syntax is as follows to restart mariadb/mysql server:
## mariadb ##
systemctl restart mariadb
## mysql
systemctl restart mysqldDebian/Ubuntu Linux users
The syntax is as follows to start/stop/restart mysql server:
#### To start ####
/etc/init.d/mysql start
# OR
service mysql start
#### To stop ####
/etc/init.d/mysql stop
# OR
service mysql stop
#### To restart ####
/etc/init.d/mysql restart
# OR
service mysql restartFreeBSD Unix server user
To start the Mysql server type:
# /usr/local/etc/rc.d/mysql-server startTo restart the Mysql server type:
# /usr/local/etc/rc.d/mysql-server restartTo stop the Mysql server type:
# /usr/local/etc/rc.d/mysql-server stop