[mysql] too many connections 에러 이유와 해결방안
too many connections 에러의 경우
mysql에 연결된 클라이언트의 수가 일정수치 이상인 경우 나타는 에러메시지이다.
<확인>
mysql 연결할 수 있는 최대 클라이언트 갯수 확인
-> mysql> show variables like '%max_connect%';
mysql 지속시간 확인
-> mysql> show variables like 'wait_timeout';
mysql 현재 상태 확인
-> mysql> show status like '%CONNECT%';
<해결 방안>
mysql 설정파일 변경 후 mysql 재시작
-> [mysqld]
max_connections = 500
wait_timeout = 300
-> 해당방법의 경우 max_connections는 214까지만 변경이되고 wait_timeout은 변경되지 않아 다음 방법으로 진행mysql에 접속하여 세팅
mysql> set global max_connections=500;
mysql> set wait_timeout=60;