320x100
320x100

원인

: MySQL에 설정된 최대 커넥션 개수를 초과해서 커넥션이 발생

 

- 확인 방법

show status like 'Max_used_connections';

: 생성 가능한 최대 커넥션 개수가 나옴

 

- 실패한 커넥션 개수 확인

show status like 'Aborted%';

 

: 차단당한 클라이언트와 커넥션 개수를 확인할 수 있음

 

 

 

 

 

해결 방법

- 즉시 적용

set global max_connections=500;

: 커넥션을 500개로 설정

 

- 영구설정

vim /etc/my.cnf
[mysqld]
max_connections = 500
service mysqld restart

 

 

 

 

 

Reference

 

MySQL max_connections 설정 - 제타위키

다음 문자열 포함...

zetawiki.com

 

300x250
728x90