mysql启动报错Job for mysqld.service failed because the control process exited with error code.

2022/3/20 19:32:30

本文主要是介绍mysql启动报错Job for mysqld.service failed because the control process exited with error code.,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Job for mysqld.service failed because the control process exited with error code. See "systemctl status mysqld.service" and "journalctl -xe" for details.
这个错误在mysql启动出错会报出

按照它的指示执行"systemctl status mysqld.service"得到

意思就是mysql启动失败

再接着执行"journalctl -xe"

知道是mysql主进程没起来,mysql服务没起来肯定是这个报错

去查看日志才能真正的解决问题

找到my.cnf这个mysql配置文件

查看日志位置

 查看日志、由于日志内容可能很多所以使用

tail -n 100 /var/log/mysqld.log|grep -E 'Warning|ERROR'

直接查看最后一百条中有Warning|ERROR的记录

然后就针对日志错误信息去解决问题



这篇关于mysql启动报错Job for mysqld.service failed because the control process exited with error code.的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程