Não é possível iniciar o MySQL? Gerenciador de pid-file sair sem atualizar [closed]

3

Eu acordei esta manhã para encontrar o MySQL no meu servidor pessoal do CentOS, mas parece que não consigo iniciá-lo novamente?!?

Começando (reiniciando bem ...):

root@tent:~$ /sbin/service mysqld restart
 ERROR! MySQL manager or server PID file could not be found!
Starting MySQL............................................................................................................... ERROR! Manager of pid-file quit without updating
root@tent:~$ /sbin/service mysqld status
 ERROR! MySQL is running but PID file could not be found

Cauda do log de erros (nada relevante)

tail -f /var/lib/mysql/tent.err
110302 12:43:39 [Note] /usr/sbin/mysqld: ready for connections.
Version: '5.1.55'  socket: '/var/lib/mysql/mysql.sock'  port: 3306  MySQL Community Server
110305 17:52:04 mysqld_safe mysqld from pid file /var/lib/mysql/tent.pid ended

Tentando usar o modo de segurança:

/usr/bin/mysqld_safe
120502 08:01:54 mysqld_safe Logging to '/var/lib/mysql/mysql-bin.err'.
120502 08:01:54 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
120502 08:03:38 mysqld_safe mysqld from pid file /var/lib/mysql/tent.pegproductions.com.pid ended

Então eu fiquei com estes em execução, mas o MySQL ainda está 'inativo' (o phpMyAdmin falha, assim como os aplicativos da web PHP).

root@tent:/var/lib/mysql$ ps aux | grep -i mysql
root      1599  0.0  0.0   3712  1308 ?        S    Apr30   0:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --pid-file=/var/lib/mysql/tent.pid
mysql     1666  0.0  0.9 130000 19356 ?        Sl   Apr30   0:08 /usr/sbin/mysqld --basedir=/ --datadir=/var/lib/mysql --user=mysql --log-error=/var/lib/mysql/mysql-bin.err --pid-file=/var/lib/mysql/tent.pid
root     11452  0.0  0.0   3224   776 pts/0    S+   08:07   0:00 grep -i mysql

Até onde eu sei, não mudei nada e ainda não começa mais?

Você tem alguma ideia de por que ou quais outras informações eu posso fornecer?

root@tent:~$ file /var/lib/mysql/tent.pid
/var/lib/mysql/tent.pid: ASCII text
root@tent:~$ cat /var/lib/mysql/tent.pid
1672
    
por Pez Cuckow 02.05.2012 / 09:10

1 resposta

4

Tente o seguinte:

 kill -15 1666
 kill -15 1599
 rm  /var/lib/mysql/tent.pid
 rm /var/lib/mysql/tent.pegproductions.com.pid
 service mysqld start
    
por 02.05.2012 / 09:35

Tags