Home >Database >Mysql Tutorial >What should I do if I don't see the service after installing mysql?
Solution: First open the cmd command console as an administrator; then switch to the bin directory of the mysql installation directory, execute the "mysqld.exe -install" command, and it will prompt "Service successfully installed." .
(Recommended tutorial: mysql video tutorial)
After the mysql installation is completed, the "Service" list The solution to the problem that there is no mysql service in it:
Open the command console (cmd) as an administrator, then switch to the bin directory under the mysql installation directory, and then type mysqld in the path. exe -install
, the prompt Service successfully installed.
will appear, indicating that the service installation is successful.
Enter the following command to start the mysql service
C:\Program Files\MySQL\MySQL Server 5.5\bin>net start mysql
At this time, refresh the service manager and you will see MySql service
The above is the detailed content of What should I do if I don't see the service after installing mysql?. For more information, please follow other related articles on the PHP Chinese website!