最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當前位置: 首頁 - 科技 - 知識百科 - 正文

mysql連接數(shù)設(shè)置操作方法(Toomanyconnections)

來源:懂視網(wǎng) 責編:小采 時間:2020-11-09 20:36:59
文檔

mysql連接數(shù)設(shè)置操作方法(Toomanyconnections)

mysql連接數(shù)設(shè)置操作方法(Toomanyconnections):mysql在使用過程中,發(fā)現(xiàn)連接數(shù)超了~~~~ [root@linux-node1 ~]# mysql -u glance -h 192.168.1.17 -p Enter password: ERROR 1040 (08004): Too many connections 解決辦法,這也是centos7下修改mysql連接數(shù)的做法: 1)
推薦度:
導(dǎo)讀mysql連接數(shù)設(shè)置操作方法(Toomanyconnections):mysql在使用過程中,發(fā)現(xiàn)連接數(shù)超了~~~~ [root@linux-node1 ~]# mysql -u glance -h 192.168.1.17 -p Enter password: ERROR 1040 (08004): Too many connections 解決辦法,這也是centos7下修改mysql連接數(shù)的做法: 1)

mysql在使用過程中,發(fā)現(xiàn)連接數(shù)超了~~~~

[root@linux-node1 ~]# mysql -u glance -h 192.168.1.17 -p

Enter password:

ERROR 1040 (08004): Too many connections

解決辦法,這也是centos7下修改mysql連接數(shù)的做法:

1)臨時修改

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)

2)永久修改:

配置/etc/my.cnf
[mysqld]新添加一行如下參數(shù):
max_connections=1000
重啟mariadb服務(wù),再次查看mariadb數(shù)據(jù)庫最大連接數(shù),可以看到最大連接數(shù)是214,并非我們設(shè)置的1000。
MariaDB [(none)]> show variables like 'max_connections';
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| max_connections | 214 |
+-----------------+-------+
這是由于mariadb有默認打開文件數(shù)限制。可以通過配置/usr/lib/systemd/system/mariadb.service來調(diào)大打開文件數(shù)目。

配置/usr/lib/systemd/system/mariadb.service

[Service]新添加兩行如下參數(shù):
LimitNOFILE=10000
LimitNPROC=10000

重新加載系統(tǒng)服務(wù),并重啟mariadb服務(wù)

systemctl --system daemon-reload
systemctl restart mariadb.service

再次查看mariadb數(shù)據(jù)庫最大連接數(shù),可以看到最大連接數(shù)已經(jīng)是1000

MariaDB [(none)]> show variables like 'max_connections';
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| max_connections | 1000 |
+-----------------+-------+

以上這篇mysql連接數(shù)設(shè)置操作方法(Too many connections)就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。

您可能感興趣的文章:

  • mysql "too many connections" 錯誤 之 mysql解決方法
  • 解決mysql 1040錯誤Too many connections的方法
  • Mysql 錯誤too many connections解決方案
  • mysql too many open connections問題解決方法
  • Mysql錯誤:Too many connections的解決方法
  • 聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

    文檔

    mysql連接數(shù)設(shè)置操作方法(Toomanyconnections)

    mysql連接數(shù)設(shè)置操作方法(Toomanyconnections):mysql在使用過程中,發(fā)現(xiàn)連接數(shù)超了~~~~ [root@linux-node1 ~]# mysql -u glance -h 192.168.1.17 -p Enter password: ERROR 1040 (08004): Too many connections 解決辦法,這也是centos7下修改mysql連接數(shù)的做法: 1)
    推薦度:
    • 熱門焦點

    最新推薦

    猜你喜歡

    熱門推薦

    專題
    Top