启动与停止mysql服务

时间:2021-12-19 04:48:10

windows:
net stop mysql57
net start mysql57
注意:1、cmd需要用管理员方式打开,不用管理员方式打开不能启动MySQL服务!会提示发生系统错误 5;拒绝访问!
2、由于安装的是mysql5.7,所以需要用net start/stop mysql57,而不是net start/stop mysql。可以在windows+r, 打开运行,输入services.msc, 找到mysql服务,查看服务名称。

linux(centos7):
[root@hanhan ~]# systemctl start mysqld
[root@hanhan ~]# systemctl stop mysqld