MySQL 服务无法启动解决
启动MySQL服务遇到问题:
可能是3306端口被占用
-
查询占用3306端口号的进程
netstat -ano |findstr "3306"
查询结果:
-
通过进程ID找到进程名称
tasklist |findstr "5160"
-
确认进程后杀死该进程
taskkill /f /t /im "5160"
-
重新进入安装MySQL的bin目录启动服务
net start mysql
本文作者:彬
本文链接:https://www.cnblogs.com/lichuanbin/p/17218230.html
版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。