-
[MySQL] max connection 설정Legacy/Database 2015. 11. 8. 04:06728x90
학교에서 분산 및 병렬처리 수업으로 프로젝트를 진행하던 중
too many connections 에러를 겪게되어 검색하던 중 찾았다.
다행히(?) 교수님께서 DB 설정 권한을 root에게만 준 것이 아니라 저도 설정을 바꿀 수 있었습니다.
또 다른 참조링크 - https://www.linux.co.kr/database/mysql/toomany/toomanyconnections.htm
출처 - http://threestory.tistory.com/6
[mysqld]
max_connections = 500
wait_timeout = 60
MySQL에서 실행하는 방법
mysql> set global max_connections=500;
mysql> set wait_timeout=60;
이렇게 한 후 다시 확인한다.
[콘솔에서]
$ mysqladmin -u root -p variables | grep max_connection
$ mysqladmin -u root -p variables | grep wait_timeout
'Legacy > Database' 카테고리의 다른 글
두가지 기준으로 정렬하기 (0) 2015.12.07 [MySQL] 스키마 및 데이터 백업 및 복구 (0) 2015.11.29 [MySQL] DB 연결 에러(blocked because of myny connection errors) (0) 2015.11.08 [MySQL] 프로시저, 뷰 확인 방법 (0) 2015.11.04