主頁(yè) > 知識(shí)庫(kù) > mysql連接數(shù)設(shè)置操作方法(Too many connections)

mysql連接數(shù)設(shè)置操作方法(Too many connections)

熱門(mén)標(biāo)簽:電銷機(jī)器人說(shuō)明書(shū) 昆明智能外呼系統(tǒng)中心 地圖標(biāo)注培訓(xùn) 南宋地圖標(biāo)注黃河華山 電銷機(jī)器人公眾號(hào)推送 手機(jī)用地圖標(biāo)注工具 安國(guó)在哪里辦理400電話 智能電銷機(jī)器人靠譜么 長(zhǎng)安區(qū)違法建房地圖標(biāo)注

mysql在使用過(guò)程中,發(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)臨時(shí)修改

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ù)庫(kù)最大連接數(shù),可以看到最大連接數(shù)是214,并非我們?cè)O(shè)置的1000。
MariaDB [(none)]> show variables like 'max_connections';
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| max_connections | 214 |
+-----------------+-------+
這是由于mariadb有默認(rèn)打開(kāi)文件數(shù)限制??梢酝ㄟ^(guò)配置/usr/lib/systemd/system/mariadb.service來(lái)調(diào)大打開(kāi)文件數(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ù)庫(kù)最大連接數(shù),可以看到最大連接數(shù)已經(jīng)是1000

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

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

您可能感興趣的文章:
  • Mysql錯(cuò)誤:Too many connections的解決方法
  • Mysql 錯(cuò)誤too many connections解決方案
  • mysql too many open connections問(wèn)題解決方法
  • 解決mysql 1040錯(cuò)誤Too many connections的方法
  • mysql "too many connections" 錯(cuò)誤 之 mysql解決方法
  • MySQL too many connections錯(cuò)誤的原因及解決

標(biāo)簽:吉安 江門(mén) 武漢 潛江 東莞 長(zhǎng)沙 合肥 南昌

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《mysql連接數(shù)設(shè)置操作方法(Too many connections)》,本文關(guān)鍵詞  mysql,連接,數(shù),設(shè)置,操作,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《mysql連接數(shù)設(shè)置操作方法(Too many connections)》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于mysql連接數(shù)設(shè)置操作方法(Too many connections)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章