MySQL 8.0限制用户并发连接数的两个参数
MySQL 8.0限制用户并发连接数的两个参数
max_connections
针对所有用户总体而言,MySQL Server允许的最大并发客户端连接数,默认值为151,可以根据服务器配置适当调大到1000。
最大并发连接数max_connections
的实际生效值等于它的配置值与open_files_limit
配置值两者中的较小值。open_files_limit
参数定义了mysqld进程能够使用的操作系统文件描述符的数量。
最大并发连接数max_connections
为全局系统变量。
修改最大并发连接数max_connections
:
set global max_connections = 1000;set @@global.max_connections = 1000;
修改最大并发连接数max_connections
的运行时值,并将其持久化到mysqld-auto.cnf
文件:
set persist max_connections = 1000;set @@persist.max_connections = 1000;
max_user_connections
针对单个MySQL用户而言,所允许的最大并发连接数。默认值为0,表示没有限制。
用户最大并发连接数max_user_connections
既有全局级别的参数值,也有会话级别的参数值。全局级别的max_user_connections
可以动态修改。会话级别的max_user_connections
为只读变量,其生效值通过以下方式来确定:
-
如果为用户设置的最大并发连接数
max_user_connections
的值不为0,那么该值即为会话级别max_user_connections
的生效值; -
如果为用户设置的最大并发连接数
max_user_connections
的值为0,那么会话级别max_user_connections
的生效值即为全局级别的配置值。
修改用户的最大并发连接数max_user_connections
:
alter user xxx with max_user_connections 0;
修改全局级别的用户最大并发连接数max_user_connections
:
set global max_user_connections = 0;
🌻常用查询命令:
--查看用户的并发连接数限制select user,host,max_connections,max_user_connections from mysql.user;--查看全局级别的用户最大并发连接数show global variables like 'max_user_connections';--查看会话级别的用户最大并发连接数show session variables like 'max_user_connections';
References
[1] https://dev.mysql.com/doc/refman/8.0/en/user-resources.html
[2] https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_user_connections
[3] https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_connections
[4] https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_open_files_limit
来源地址:https://blog.csdn.net/Sebastien23/article/details/130094075
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341