lku avatar

[mysql] too many connections 에러 이유와 해결방안

lku

Published: 27 Feb 2018 › Updated: 27 Feb 2018[mysql] too many connections 에러 이유와 해결방안

[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%';

<해결 방안>

  1. mysql 설정파일 변경 후 mysql 재시작
    -> [mysqld]
    max_connections = 500
    wait_timeout = 300
    -> 해당방법의 경우 max_connections는 214까지만 변경이되고 wait_timeout은 변경되지 않아 다음 방법으로 진행

  2. mysql에 접속하여 세팅
    mysql> set global max_connections=500;
    mysql> set wait_timeout=60;

Leave [mysql] too many connections 에러 이유와 해결방안 to:

Written by

Read more #server posts


Best Posts From lku

We have not curated any of lku's posts yet. But you can encourage our curation team to review posts by visiting them regularly and by referring other readers. Because we give priority to frequently read content.

More Posts From lku