程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql啟動錯誤

mysql啟動錯誤

編輯:MySQL綜合教程

mysql啟動錯誤


[root@itcast02 itcast]# /etc/init.d/mysql restart //啟動服務

ERROR! MySQL server PID file could not be found!
Starting MySQL................ ERROR! The server quit without updating PID file (/var/lib/mysql/itcast02.pid).//出錯

[root@itcast02 itcast]#mysql -u root -p //登錄


ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) //錯誤

[root@itcast02 itcast]# /etc/rc.d/init.d/mysqld status //查看狀態失敗

bash: /etc/rc.d/init.d/mysqld: No such file or directory

[root@itcast02 itcast]#chown -R mysql:mysql /var/lib/mysql //設置權限

[root@itcast02 itcast]#/etc/init.d/mysql restart //重新啟動

ERROR! MySQL server PID file could not be found!

Starting MySQL...... SUCCESS! //啟動成功

[root@itcast02 itcast]#mysql -u root -p //再次登錄 成功

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved