私は MySQL サーバーで困っています (そして、ご覧のとおり、私の serverfault アカウントでも困っています。まあ、それはまた別の話です)。クエリで「Mysql サーバーが消えてしまいました...」というエラーが発生しています。私は Debian Lenny、MySQL バージョン 5.0.51a-24+lenny2-log を使用しています。my.cnf 構成は次のとおりです。
[client]
port = 3306
socket = /var/run/mysqld/mysqld.sock
# Here is entries for some specific programs
# The following values assume you have at least 32M ram
# This was formally known as [safe_mysqld]. Both versions are currently parsed.
[mysqld_safe]
socket = /var/run/mysqld/mysqld.sock
nice = 0
[mysqld]
#
# * Basic Settings
#
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
port = 3306
basedir = /usr
datadir = /var/lib/mysql
tmpdir = /tmp
language = /usr/share/mysql/english
skip-external-locking
#
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
bind-address = 0.0.0.0
#
# * Fine Tuning
#
wait_timeout = 28800
net_read_timeout = 60
net_write_timeout = 60
key_buffer = 384M
max_allowed_packet = 64M
thread_stack = 128K
thread_cache_size = 8
# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover = BACKUP
#max_connections = 100
table_cache = 4096
sort_buffer = 2M
read_buffer = 2M
read_rnd_buffer = 64M
myisam_sort_buffer_size = 64M
#thread_concurrency = 10
#
# * Query Cache Configuration
#
query_cache_limit = 64M
query_cache_size = 32M
#
# * Logging and Replication
#
# Both location gets rotated by the cronjob.
# Be aware that this log type is a performance killer.
#log = /var/log/mysql/mysql.log
#
# Error logging goes to syslog. This is a Debian improvement :)
#
# Here you can see queries with especially long duration
log_slow_queries = /var/log/mysql/mysql-slow.log
long_query_time = 2
#log-queries-not-using-indexes
#
# The following can be used as easy to replay backup logs or for replication.
# note: if you are setting up a replication slave, see README.Debian about
# other settings you may need to change.
#server-id = 1
#log_bin = /var/log/mysql/mysql-bin.log
expire_logs_days = 10
max_binlog_size = 100M
#binlog_do_db = include_database_name
#binlog_ignore_db = include_database_name
#
# * BerkeleyDB
#
# Using BerkeleyDB is now discouraged as its support will cease in 5.1.12.
skip-bdb
#
# * InnoDB
#
# InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/.
# Read the manual for more InnoDB related options. There are many!
# You might want to disable InnoDB to shrink the mysqld process by circa 100MB.
#skip-innodb
#
# * Security Features
#
# Read the manual, too, if you want chroot!
# chroot = /var/lib/mysql/
#
# For generating SSL certificates I recommend the OpenSSL GUI "tinyca".
#
# ssl-ca=/etc/mysql/cacert.pem
# ssl-cert=/etc/mysql/server-cert.pem
# ssl-key=/etc/mysql/server-key.pem
[mysqldump]
quick
quote-names
max_allowed_packet = 32M
[mysql]
#no-auto-rehash # faster start of mysql but no tab completition
[isamchk]
key_buffer = 16M
#
# * NDB Cluster
#
# See /usr/share/doc/mysql-server-*/README.Debian for more information.
#
# The following configuration is read by the NDB Data Nodes (ndbd processes)
# not from the NDB Management Nodes (ndb_mgmd processes).
#
# [MYSQL_CLUSTER]
# ndb-connectstring=127.0.0.1
#
# * IMPORTANT: Additional settings that can override those from this file!
# The files must end with '.cnf', otherwise they'll be ignored.
#
!includedir /etc/mysql/conf.d/
このエラーを止めるために調整できるものはありますか?
ありがとう!
答え1
2つの可能性があると思います:
1. PHPに時間がかかる:
net_read_timeout
PHP を使用している場合、実行時間は MySQL のタイムアウトよりも長くなる可能性があります。とnet_write_timeout
を PHP の と比較してくださいmax_execution_time
。 PHP の実行時間が 60 より長い場合、MySQL が切断される可能性があります。
2. サーバーの過負荷
変数wait_timeout
が 8 時間 (28800 秒) なので、アイドル状態の MySQL 接続が問題になる場合があります。show processlist
クエリを使用して、アイドル状態のスレッドがどれだけ実行されているかを確認します。アイドル状態のスレッドが多数ある場合は、ディレクティブを下げる必要がある場合がありますwait_timeout
。現在、実稼働 Web サーバーでは 60 という値を使用しています (まだ誰も不満を言っていません)。
いずれにせよ、MySQL には明らかにいくつかの設定調整が必要です。Web 上には MySQL のチューニングについて述べた記事がたくさんあります。
答え2
「消えました」というメッセージは、サーバーが待機に飽きて接続を閉じたことを示しています。
新しい接続を開くことで起動できるはずです。
答え3
「MySQLが消えた」とは、WebアプリがMySQLサーバーにアクセスできないことを意味します。これは、サーバーがダウンしているかアクセスできないことを示します。別のWebアプリで確認することができます。phpMyAdminまたは、コマンドライン オプション「show processlist;」を使用して、MySQL サーバーの内部で何が起こっているかを確認します。
サーバーに MySQL を実行するための十分なメモリがない場合、このように停止してしまうことがよくあります。メモリ使用量を確認し、設定に応じて十分なメモリがあることを確認してください。