기계는 거짓말하지 않는다

MySQL max connection 설정, 현재 connection 확인 본문

DB/MySQL

MySQL max connection 설정, 현재 connection 확인

KillinTime 2023. 12. 20. 20:24

최대 커넥션 확인

SHOW VARIABLES LIKE "max_connections";

최대 커넥션 설정

SET GLOBAL max_connections = 200;

현재 커넥션 확인

SHOW PROCESSLIST;

Comments