Maison > Article > base de données > Quelles sont les commandes pour démarrer et arrêter le service mysql sous Linux ?
Méthode 1 :
[root@localhost bin]ps -ef|grep mysql1
Méthode 2 :
[root@localhost bin]netstat -nlp1
Méthode en ligne de commande :
[root@localhost bin]cd /usr/bin [root@localhost bin]./mysqld_safe &12
Méthode de service :
[root@localhost ~]service mysql start 如果服务在启动状态,直接重启服务用以下命令: [root@localhost ~]service mysql restart123
Méthode en ligne de commande :
[root@localhost ~]mysqladmin -u root shutdown1
Méthode de service :
[root@localhost ~]service mysql stop
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!