web-dev-qa-db-ja.com

mysqlサーバーを再起動する方法は?

MySQLサーバーを再起動するたびに

bitnami@xxx:/$ Sudo opt/bitnami/ctlscript.sh start server

WWarning: World-writable config file '/opt/bitnami/mysql/my.cnf' is ignored
Warning: World-writable config file '/opt/bitnami/mysql/my.cnf' is ignored
121120 12:30:18 mysqld_safe Logging to '/opt/bitnami/mysql/data/mysqld.log'.
121120 12:30:18 mysqld_safe Starting mysqld daemon with databases from /opt/bitnami/mysql/data
121120 12:30:20 mysqld_safe mysqld from pid file /opt/bitnami/mysql/data/ip-10-136-14-170.pid ended
/opt/bitnami/mysql/scripts/ctl.sh : mysql  could not be started

サーバーは次のエラーで応答します。

(2002、「ソケット '/tmp/mysql.sock'(2)を介してローカルMySQLサーバーに接続できません」)

この問題を解決するために私がしなければならないことを教えてください。

9
Madhur Rampal

Mysqlがサービスとしてインストールされている場合(ほとんどの場合)、service mysqld restartまたは/etc/init.d/mysqld restartを実行できます。

startの代わりにstopreload、またはrestartを使用することもできます。

27
Martin