一、问题背景
service mysql start 启动mysql服务器时,提示如下错误:
Redirecting to /bin/systemctl start mysql.service
二、问题原因
原因推测:service mysql start
是重定向到/bin/systemctl restart mysql.service. mysql
与mysqld是不同的,前者交互式命令(客户端),mysqld才是后端服务进程,应该是启错了
三、问题处理
使用service mysqld start
或者systemctl start mysqld
启动
附:其他操作mysql命令
使用如下命令操作mysql:
查看状态:systemctl statusmysqld.service
重启:systemctl restart mysqld.service
启动:systemctl start mysqld.service
停止:systemctl stop mysqld.service
查看状态:service mysqld status
重启:service mysqld restart
启动:service mysqld start
停止:service mysqld stop