程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MYSQL入門知識 >> MySQL錯誤Another MySQL daemon already running with the same

MySQL錯誤Another MySQL daemon already running with the same

編輯:MYSQL入門知識
 

在國外網站發現的解決方法。

原因多個Mysql進程使用了同一個socket。

兩個方法解決:

第一個是立即關機 使用命令 shutdown -h now 關機,關機後在啟動,進程就停止了。

第二個直接把mysql.sock文件改名即可。也可以刪除,推薦改名。

然後就可以啟動mysql了。

下面是國外原文

To prevent the problem from occurring, you must perform a graceful shutdown of the server from the command line rather than powering off the server.

# shutdown -h now
This will stop the running services before powering down the machine.

Based on Centos, an additional method for getting it back up again when you run into this problem is to move mysql.sock:

# mv /var/lib/mysql/mysql.sock /var/lib/mysql/mysql.sock.bak

# service mysqld start
Restarting the service creates a new entry called mqsql.sock

 

===ps:我用的第二種方法解決。卸載mysql重裝也沒搞定====

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