コマンドでMySQLを起動しようとするたびに
service mysqld start
次のエラーが発生します。
MySQL Daemon failed to start.
Starting mysqld: [FAILED]
ログを見ると次のようになります。
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
/usr/にCDを移動してコマンドを実行するたびに、同じエラーが発生します。
[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
CentOSバージョン6.6を使用しています。 MySQLを起動するには?
ベストアンサー1
インストールされていることを確認CentOS 6.6
できます。mysql-server
rpm -qi mysql-server
次のコマンドを使用してインストールできます。
yum install mysql-server
または再インストールしてください。
yum reinstall mysql-server