restart mysql server on windows 7

Open the command prompt and enter the following commands:

net stop MySQL   
net start MySQL

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

Leave a Comment