O arquivo / usr / libexec / mysqld não existe ou não é executável

4

Sempre que eu tento iniciar o MySQL através do comando

service mysqld start

Eu recebo o seguinte erro:

MySQL Daemon failed to start.
Starting mysqld:                                           [FAILED]

E olhando nos logs, vejo isso:

150706 14:52:12 mysqld_safe The file /usr/libexec/mysqld
does not exist or is not executable. Please cd to the mysql installation
directory and restart this script from there as follows:
./bin/mysqld_safe&
See http://dev.mysql.com/doc/mysql/en/mysqld-safe.html for more information

Sempre que eu clico para / usr / e executo o comando, recebo o mesmo erro:

[root@www usr]# ./bin/mysqld_safe
150707 10:15:19 mysqld_safe Logging to '/var/log/mysqld.log'.
150707 10:15:19 mysqld_safe The file /usr/libexec/mysqld
does not exist or is not executable. Please cd to the mysql installation
directory and restart this script from there as follows:
./bin/mysqld_safe&
See http://dev.mysql.com/doc/mysql/en/mysqld-safe.html for more information

Eu estou no CentOS versão 6.6. Como obter o MySQL iniciado?

    
por Louis K 07.07.2015 / 12:16

1 resposta

4

Em CentOS 6.6 , você pode verificar se mysql-server está instalado com:

rpm -qi mysql-server

E você pode instalá-lo com:

yum install mysql-server

ou reinstale:

yum reinstall mysql-server
    
por 09.07.2015 / 18:21