Home >Database >Mysql Tutorial >MySQL查看最大连接数跟修改最大连接数

MySQL查看最大连接数跟修改最大连接数

WBOY
WBOYOriginal
2016-06-07 16:25:381073browse

MySQL查看最大连接数和修改最大连接数 MySQL查看最大连接数和修改最大连接数 1、查看最大连接数 show variables like '%max_connections%'; 2、修改最大连接数 set GLOBAL max_connections = 200;

MySQL查看最大连接数和修改最大连接数

MySQL查看最大连接数和修改最大连接数


1、查看最大连接数
      show variables like '%max_connections%';


2、修改最大连接数
      set GLOBAL max_connections = 200;


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:mysql group_concat的长度有关问题Next article:mysql手写