2011-12-08 191 views
2

這裏是我的困境(在某種程度上類似於this resource和我什麼都試過,但沒有任何幫助):服務啓動mysql失敗ubuntu上

[email protected]:~# service mysql status 
mysql start/running 

當我在尋找的過程:

[email protected]:~# ps ax | grep mysql 
2263 pts/0 S+  0:00 grep --color=auto mysql 

我查了日誌和/var/log/mysql/error.log是空的,但奇怪的東西在/var/log/syslog ...

[email protected]:~# grep mysql /var/log/syslog 
... 
Dec 8 15:24:17 vuxomys01 init: mysql post-start process (1963) terminated with status 1 
Dec 8 15:24:17 vuxomys01 kernel: [ 460.182640] type=1505 audit(1323375857.580:28): operation="profile_replace" pid=2098 name="/usr/sbin/mysqld" 
Dec 8 15:24:17 vuxomys01 init: mysql main process (2102) terminated with status 1 
Dec 8 15:24:17 vuxomys01 init: mysql main process ended, respawning 
Dec 8 15:24:47 vuxomys01 init: mysql post-start process (2103) terminated with status 1 

...和/var/log/daemon.log

[email protected]:~# grep mysql /var/log/daemon.log 
... 
Dec 8 15:24:17 vuxomys01 init: mysql post-start process (1963) terminated with status 1 
Dec 8 15:24:17 vuxomys01 init: mysql main process (2102) terminated with status 1 
Dec 8 15:24:17 vuxomys01 init: mysql main process ended, respawning 
Dec 8 15:24:47 vuxomys01 init: mysql post-start process (2103) terminated with status 1 

任何其他的想法將非常感激。提前致謝!

  • 尤金。
+0

您可以請列出發行版,版本和安裝mysql的方式 – hafichuk

+0

此問題應該遷移到serverfault。 – hafichuk

+0

Unbe-f ...-宜居!這是my.cnf中的問題,這是在「被character_set_server = UTF8」 :(反正缺少一個「H」,感謝意向 – eistrati

回答

1

由於MySQL的遷移不完整,我認爲您在post-start腳本中有一個無限循環。檢查這thread,我敢肯定解決方案在那裏。

+0

檢查這個地方! HTTP: //askubuntu.com/questions/127264/cant-start-mysql-mysql-respawning-too-fast-stopped# 「無法啓動mysql - MySQL的重生速度太快,停」 – RzR

+2

對於谷歌重生:我問題是我忘記chown/chmod在遷移過程中從另一臺服務器上移過來的文件,一旦事情有了正確的所有者和權限,mysql就直接啓動了。 – peelman