공부
[MySQL] count connection
승가비
2020. 11. 7. 14:30
728x90
show variables like '%max_connect%';
show global status like 'threads_connected';
/etc/my.cnf을 열어 "max_connections = 3000"를 추가 해주고 재시작 한다.
mysql 최대 접속자수 확인 및 변경하기
최대 사용자 접속수 보기 show variables like '%max_connect%'; 접속수 보기 show global status like 'threads_connected'; 최대 사용자 접속 허용수 변경 하기 /etc/my.cnf을 열어 "max_connections = 3000"를..
jaesu.tistory.com
728x90