1. 程式人生 > >linux mysql修改最大連線數

linux mysql修改最大連線數

檢視當前資料庫連線
>mysqladmin -uroot -pxxxxx processlist

+--------+------+----------------------+----------+---------+------+-------+------------------+
| Id     | User | Host                 | db       | Command | Time | State | Info             |
+--------+------+----------------------+----------+---------+------+-------+------------------+
| 938233 | root | xxx.xx.xxx.xxx:20503 | aaaaaaaa | Sleep   | 446  |       |                  |
| 938234 | root | xxx.xx.xxx.xxx:20504 | aaaaaaaa | Sleep   | 446  |       |                  |
| 938235 | root | xxx.xx.xxx.xxx:20505 | aaaaaaaa | Sleep   | 446  |       |                  |
| 938236 | root | xxx.xx.xxx.xxx:20506 | aaaaaaaa | Sleep   | 446  |       |                  |
| 938237 | root | xxx.xx.xxx.xxx:20507 | aaaaaaaa | Sleep   | 423  |       |                  |
| 938259 | root | localhost            |          | Query   | 0    |       | show processlist |

+--------+------+----------------------+----------+---------+------+-------+------------------+

可以看到當前資料庫連線資訊,那個資料庫連線數多。

檢視當前資料庫最大連線數(需登入mysql)
>show variables like 'max_connections';

+-----------------+-------+
| Variable_name   | Value |
+-----------------+-------+
| max_connections | 151   |
+-----------------+-------+
修改最大連線數
在mysql的配置檔案中新增以下引數
max_connections = 1000


重啟mysql即可