【MySQL】too many connections

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;