MySQLでToo many connectionsの解決方法
構成ファイルを設定
# vi /etc/my.cnf
[mysqld]
max_connections=3000
wait_timeout=10
MySQL再起動
# /etc/init.d/mysqld restart
Coding Changes the World
構成ファイルを設定
# vi /etc/my.cnf
[mysqld]
max_connections=3000
wait_timeout=10
MySQL再起動
# /etc/init.d/mysqld restart