MySQL にて 「too many connections」エラー発生。
内容のとおり、接続数オーバーエラー。
max_connectionsの設定値とwait_timeoutの設定値を変更
▽コマンド
> set global max_connections=数;
> set global wait_timeout=数;
▽my.conf
max_connections=数
set-variable = wait_timeout=数
※補足
■DNSの逆引きを無効にする設定
▽my.conf
skip-name-resolve
■プロセスリストの表示
> show processlist;