La section suivante de la colonne Tutoriel du système Linux vous présentera comment afficher, démarrer et fermer MySQL sous Linux. J'espère que cela sera utile aux amis dans le besoin !
1. Deux façons d'afficher le service mysql sous Linux :
Première méthode :
[root@localhost bin]ps -ef|grep mysql
Méthode deux :
[root@localhost bin]netstat -nlp
2.
[root@localhost bin]cd /usr/bin [root@localhost bin]./mysqld_safe &
[root@localhost ~]service mysql start
[root@localhost ~]service mysql restart
3. Deux façons de fermer le service mysql sous Linux :
Méthode en ligne de commande :
[root@localhost ~]mysqladmin -u root shutdown
[root@localhost ~]service mysql stop
Tutoriel vidéo Linux
"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!