[mysql] too many connections 에러 이유와 해결방안
too many connections 에러의 경우
mysql에 연결된 클라이언트의 수가 일정수치 이상인 경우 나타는 에러메시지이다.
<확인>
<해결 방안>
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;