프로그래밍/SQL

[MySQL] Too many connections 문제 해결 : max_connections 설정하기

Lou Park 2019. 3. 12. 11:22


show status like 'threads_connected';

: 현재 연결되어있는 thread 수 확인


show variables like 'wait_timeout';

: 현재 지정된 wait_timeout 값 확인


show variables like 'max_connections';

: 현재 지정된 max_connections 값 확인


set global max_connections=500;

: max_connections 500으로 설정


set global wait_timeout=60;

: wait_timeout 60으로 설정 (초 단위)


wait_timeout

: 지정된 시간동안 mysql에서 응답이 없을경우 커넥션을 종료


max_connections

: mysql이 허용할 수 있는 클라이언트의 최대 연결 수. 많이 높아도 좋지 않다.