MySQL
アプリケーションからの接続タイムアウトの設定 [#l3b8bc06]
現状の値の確認 [#o5b16fa5]
mysql> show global variables like '%timeout%';
変更 [#vb722067]
mysql> set global wait_timeout = 60;
再起動後も有効にする設定 [#a05d525a]
# vi /etc/my.cnf
[mysqld]
wait_timeout=60
MySQL
mysql> show global variables like '%timeout%';
mysql> set global wait_timeout = 60;
# vi /etc/my.cnf
[mysqld]
wait_timeout=60