gbless 发表于 2018-10-4 14:33:25

mysql修改最大连接数笔记

  MySQL 默认的最大连接数为 151
  mysql> show variables like 'max_connections';
  +-----------------+-------+
  | Variable_name   | Value |
  +-----------------+-------+
  | max_connections | 151   |
  +-----------------+-------+
  设置这个最大连接数值
  mysql> set GLOBAL max_connections=512;
  或vim /etc/my.cnf
  
  max_connections=512
  查看服务器响应的最大连接数:
  show global status like 'Max_used_connections';
  +----------------------+-------+
  | Variable_name      | Value |
  +----------------------+-------+
  | Max_used_connections | 95    |
  +----------------------+-------+

页: [1]
查看完整版本: mysql修改最大连接数笔记