In mysql, the command line to stop the service is "net stop mysql". The function of the "net stop" command is to shut down the specified service. When the statement "MySQL service is stopping MySQL service has been stopped successfully" appears. , indicating that the mysql service has been stopped.
The operating environment of this tutorial: windows10 system, mysql8.0.22 version, Dell G3 computer.
What is the command line to stop the mysql service?
In mysql, the command to shut down the service is: net stop mysql,
The following information will appear:
MySQL service is stopping
MySQL service has been stopped successfully
NET command is a powerful tool. Tool executed in command line mode.
It contains most of the important management functions for managing network environments, services, users, and logins. You can write a document of more than 20 pages about these, so I will not list them.
When starting and shutting down the service, the syntax is:
net start service name
net stop service name
Recommended learning:mysql Video tutorial
The above is the detailed content of What is the command line to stop the mysql service?. For more information, please follow other related articles on the PHP Chinese website!