结论1:max_connections变量的意义是 限制当前mysql server中 允许同时连接的不同用户数,并不对相同用户的多次连接进行限制
结论2:max_user_connections变量的意义是 限制当前mysql server中 允许同时连接的相同用户的连接数,不对连接的不同用户数进行限制
结论3:对max_connections变量的设置,由于是设置的全局变量,因此均是对所有用户生效
结论4:对max_user_connections的设置,分为以下两种情况;
1. 针对所有用户有效
mysql> set @@global.max_user_connections=2;
2. 针对单个用户有效
mysql> grant usage on . to [email protected] with max_user_connections 2;
//此时的设置将仅对keyman用户有效。
注:与max_user_connections参数类似的还有max_queries_per_hour,max_updates_per_hour
及max_connections_per_hours,见名知意,用法同上。
标签:max,variables,用户,per,connections,user,mysql From: https://blog.51cto.com/u_11571552/12119927