1. 程式人生 > >CentOS7下mysql5.6 連線數修改不生效

CentOS7下mysql5.6 連線數修改不生效

原文:https://blog.csdn.net/five3/article/details/79671317

 

1、安裝好mysql服務

2、編輯mysql配置檔案vim /etc/my.cnf

3、在[mysqld]分段下新增一行:max_connections=1000

4、編輯/usr/lib/systemd/system/mysqld.service配置檔案,在檔案尾部新增2行:

LimitNOFILE=65535

LimitNPROC=655356、

5、重啟使mysql配置生效

systemctl daemon-reload

systemctl restart mysql

6、檢視mysql最大連線數

show global variables like 'max_connections';          1000