Notice
Recent Posts
Recent Comments
목록max_connections (1)
준호씨의 블로그
mysql - max_connections 설정 하기. 설정 확인하기
설정 파일 확인 my.cnf 등 사용하는 설정 파일을 열얼 본다. 아래와 같은 설정을 찾을 수 있을 것이다. 보통 /etc/my.cnf 인데 환경에 따라 다를 수도 있음. max_connections = 200 db 접속 해서 확인 하는 방법 mysql> show variables like 'max_connections'; +-----------------+-------+ | Variable_name | Value | +-----------------+-------+ | max_connections | 6000 | +-----------------+-------+ 1 row in set (0.01 sec) 설정 바꾸기 set global 로 바로 적용 해 볼 수 있다. mysql> set global m..
개발이야기
2017. 11. 24. 22:30