本帖最后由 hackroad 于 2013-3-2 11:37 编辑
max_user_connections是指每个数据库用户的最大连接数在mysql的手册中已经对max_user_connections有一点说明,它是用来限制用户资源的
yegoo可以在phpmyadmin中查询相关设置- mysql> select @@max_user_connections;
- +------------------------+
- | @@max_user_connections |
- +------------------------+
- | 0 |
- +------------------------+
- 1 row in set (0.00 sec)
复制代码 默认情况系是为0的
为0是什么意思呢?它是说不限制用户资源的。
max_questions: 0
max_updates: 0
max_connections: 0
max_user_connections: 0
这几个参数可以对某个用户进行限制 |