小编给大家分享一下linux如何实现查看、启动及关闭mysql,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
一、linux下查看mysql服务的两种方式:
方式一:
[root@localhost bin]ps -ef|grep mysql
方式二:
[root@localhost bin]netstat -nlp
二、linux下启动mysql服务的两种方式:
命令行方式:
[root@localhost bin]cd /usr/bin[root@localhost bin]./mysqld_safe &
服务方式:
[root@localhost ~]service mysql start
如果服务在启动状态,直接重启服务用以下命令:
[root@localhost ~]service mysql restart
三、linux下关闭mysql服务的两种方式:
命令行方式:
[root@localhost ~]mysqladmin -u root shutdown
服务方式:
[root@localhost ~]service mysql stop
看完了这篇文章,相信你对“linux如何实现查看、启动及关闭mysql”有了一定的了解,如果想了解更多相关知识,欢迎关注编程网行业资讯频道,感谢各位的阅读!