1. 程式人生 > 其它 >Job for mysqld.service failed because the control process exited with error

Job for mysqld.service failed because the control process exited with error

技術標籤:運維mysql

錯誤

報錯資訊:
Job for mysqld.service failed because the control process exited with error

解決

按照提示輸入命令

  systemctl status mysqld.service 或者 journalctl -xn

但是顯示的 資訊並不能提供服務啟動失敗的真正原因
進一步檢視日誌:

   vi /var/log/mysqld.log

在這裡插入圖片描述

原因分析: 埠3306被佔用

解決:

ps -auf|grep mysql

刪除mysql 程序

kill -9 pid
在這裡插入圖片描述