- 커넥션 수 확인
mysql> show variables like 'max_connections';
Variable_name | Value | |
max_connections | 151 | |
mysqlx_max_connections | 100 |
- 현재 사용중인 커넥션 확인
mysql> show status like 'Max_used_connections';
Variable_name | Value | |
Max_used_connections | 187 |
--> 초과중
- 커넥션 수 수정
mysql> set global max_connections=1000;
Variable_name | Value | |
max_connections | 1000 | |
mysqlx_max_connections | 100 |
반응형
'프로그래밍 > DB & Redis' 카테고리의 다른 글
[mysql] 설치 경로 찾기 (0) | 2022.12.16 |
---|---|
[mysql] stored procedure 호출 (0) | 2022.06.30 |
[mysql] safe update 하기 (1) | 2019.11.22 |
[mysql] SELECT 후 UPDATE (0) | 2018.11.25 |
[mysql] 이벤트 스케쥴 확인 (0) | 2018.11.25 |
댓글