步骤:
1.编辑 /etc/my.cnf 添加如下一行,注意是在[mysqld] 区域下面添加 而不是最后,最后添加是不生效的
max_connections = 1000
2.编辑 /usrb/systemd/system/mysqld.service 文件,在文件最后添加
LimitNOFILE=65535
LimitNPROC=65535
3.重启服务
$ systemctl daemon-reload
$ systemctl restart mysqld.service
4.连接数据库,查看最大连接数
mysql> show variables like 'max_connections'; | |
---|---|
Variable_name | Value |
max_connections | 1000 |
1 row in set (0.00 sec)
版权属于:Jolly
本文链接:https://totoro.site/index.php/archives/27/
关于转载:原创文章,禁止转载