1、查看mysql服务的两种方式
[root@localhost bin]ps -ef|grep mysql
[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
关闭服务的两种方式
命令行方式:
[root@localhost ~]mysqladmin -u root shutdown
服务方式:
[root@localhost ~]service mysql stop
启动与关闭MySQL
最新推荐文章于 2024-09-25 11:20:42 发布