本文介绍了在Windows 7上重启mysql服务器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在Windows 7上重新启动MySQL?
How do I restart MySQL on Windows 7?
我使用HeidiSql作为前端,那里没有选项.
I'm using HeidiSql as a front end and there's no option in there.
我唯一拥有的其他东西是MySQL 5.5命令行客户端.
The only other things I have is the MySQL 5.5 command line client.
推荐答案
打开命令提示符并输入以下命令:
Open the command prompt and enter the following commands:
net stop MySQL
net start MySQL
MySQL服务名称可能会根据您安装的版本而更改.在我的情况下,MySQL版本是MySQL Server 5.7.所以我使用以下命令
the MySQL service name maybe changes based on the version you installed.In my situation, MySQL version is MySQL Server 5.7.So I use the following command
net stop MySQL57
net start MySQL57
这篇关于在Windows 7上重启mysql服务器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!