linux下mysql 启动命令
Posted 彼扬
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux下mysql 启动命令相关的知识,希望对你有一定的参考价值。
1,使用service 启动、关闭mysql服务
service mysql start
service mysql stop
service mysql restart
运行上面命令,其实是service命令去找/etc/init.d下的相关的mysql脚本去执行启动、关闭动作。
2,使用/etc/init.d/mysql启动、关闭MySQL服务,
[[email protected] bin]# /etc/init.d/mysql start
Starting MySQL....[ OK ]
[[email protected] bin]# /etc/init.d/mysql stop
Shutting down MySQL..[ OK ]
[[email protected] bin]#
以上是关于linux下mysql 启动命令的主要内容,如果未能解决你的问题,请参考以下文章