반응형

mysql 이나 mariadb는 기본적으로 동접자가 151이 디폴트다. 이걸 좀 늘려주자.

 

show variables like '%max_connect%';
show status like '%CONNECT%';
show status like 'Aborted%';

 

이렇게 해보면 현재 상황을 알 수 있다. 특히 마지막 aborted에서 거부된 clients 수가 높으면 빨리 동접자수를 늘려줘야 한다.

 

set global max_connections=500;
set global max_connect_errors=10000;

 

이렇게 해주면 된다.

 

재시작 안해도 적용된다.

반응형

+ Recent posts