以下のエディターは、mysql接続数を設定する方法(接続が多すぎる)を提供します。編集者はこれが非常に良いものだと思ったので、皆さんの参考として今から共有します。エディターに従って、mysql の使用中に接続数が超過していることがわかりました
[root@linux-node1 ~]# mysql -u glance -h 192.168.1.17 -p Enter password: ERROR 1040 (08004): Too many connections
MariaDB [(none)]> show variables like "max_connections"; +-----------------+-------+ | Variable_name | Value | +-----------------+-------+ | max_connections | 214 | +-----------------+-------+ 1 row in set (0.00 sec) MariaDB [(none)]> set GLOBAL max_connections=1000; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> show variables like "max_connections"; +-----------------+-------+ | Variable_name | Value | +-----------------+-------+ | max_connections | 1000 | +-----------------+-------+ 1 row in set (0.00 sec)
Configure /etc/my.cnf
max_connections=1000
/usr/lib/systemd/system/mariadb.service を設定します
[Service]次のパラメーターを含む 2 つの新しい行を追加します。
MariaDB [(none)]> show variables like 'max_connections'; +-----------------+-------+ | Variable_name | Value | +-----------------+-------+ | max_connections | 214 | +-----------------+-------+
LimitNO FILE =10000 LimitNPROC=10000
systemctl --system daemon-reload systemctl restart mariadb.service
以上がmysqlの接続数(接続数が多すぎる)の設定方法を詳しく紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。