꿈꾸는 개발자, DBA 커뮤니티 구루비 (gurubee.net)
MySql/MariaDB에서 발생하는 Connection 끊김 문제 해결하기 | SK(주) C&C’s TECH BLOG (engineering-skcc.github.io)
- wait_timeout 설정값 변경
설정값 변경 후에는 DB를 재시작 필요함
1. Command Line 명령어로 Parameter 설정값 변경
set global wait_timeout = 대기시간(초)
set session wait_timeout = 대기시간(초)
2. my.cnf 파일에서 설정값 변경(MariaDB의 경우는 50-server.cnf 파일)
wait_timeout = 대기시간(초)
extra_max_connections
MariaDB [(none)]> set global extra_max_connections = 3;
save and exit
mysql> FLUSH PRIVILEGES; mysql> exit