mysql> show variables like 'max_connections'; +-----------------+-------+ | Variable_name | Value | +-----------------+-------+ | max_connections | 100 | +-----------------+-------+ 1 row in set (0.00 sec)
また起動中に動的に変更することも可能です。
mysql> set global max_connections = 150;起動していないなら/etc/my.cnfで設定するのがいいでしょう。