Solution: 1. Use tasklist to view the mysql process, and use "taskkill /f /t /im process name" to kill the specified process; 2. Add NETWORK SERVICE to the Administrators group in the local user group, and change Network services and reinstall.
The operating environment of this tutorial: windows7 system, mysql8.0.22 version, Dell G3 computer.
In the Windows7 operating system, when deploying mysql,
The Mysql service cannot be started error 1053: The service did not respond to start or control requests in a timely manner.
The detailed processing process is summarized below
Processing method:
【结束进程】1、在命令行中敲入tasklist查看进程 2、根据进程名杀死进程 taskkill /f /t /im 进程名称
##
【更改网络服务】1)、计算机->管理->本地用户和组->组 双击,效果图如下:
(2)、双击Administrators,并点击添加,再点击高级 (3)、把 NETWORK SERVICE添加到Administrators组
【删除服务】 sc delete mysql57303307 此处记住,重新安装Mysql就可以
If there are any errors or imperfections in this article, please correct me. You can leave a message or QQ. Your criticism is the biggest motivation for my writing!
The above is the detailed content of How to solve the mysql service cannot start 1053 error. For more information, please follow other related articles on the PHP Chinese website!