MySQL問題: Starting MySQL/etc/init.d/mysql: line 159: kill: (21755) - No such process

 

問題:
   Starting MySQL/etc/init.d/mysql: line 159: kill: (21755) - No such process解決辦法

編輯mysqld:
[root@linux115 ~]#vi /etc/rc.d/init.d/mysqld

找到類似這樣一行(我這裏是304行):
$bindir/mysqld_safe --datadir=$datadir --pid-file=$server_pid_file $other_args >/dev/null 2>&1 &

改爲(加上參數--user=root):
$bindir/mysqld_safe --user=root --datadir=$datadir --pid-file=$server_pid_file $other_args >/dev/null 2>&1 &

然後再試:
[root@linux115 ~]# service mysqld start
Starting MySQL[確定]

 

登錄測試:

[student1@linux115 ~]$ mysql -u zgl -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 688
Server version: 5.0.56-enterprise-gpl-log Source

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章