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的记录
然后就针对日志错误信息去解决问题