준호씨의 블로그

mysql - max_connections 설정 하기. 설정 확인하기 본문

개발이야기

mysql - max_connections 설정 하기. 설정 확인하기

준호씨 2017. 11. 24. 22:30
반응형

설정 파일 확인

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 max_connections=2000;
Query OK, 0 rows affected (0.00 sec)

영구적으로 설정 하려면 /etc/my.cnf 설정을 바꾸고 재시작 하면 된다.

참고

MySQL max connections 설정 http://zetawiki.com/wiki/MySQL_max_connections_%EC%84%A4%EC%A0%95

반응형
Comments