MySQL 실시간 쿼리 확인
리눅스/MySQL2022. 5. 25. 08:58
반응형
mysqladmin 명령어로 상태를 출력
# mysqladmin -i5 proc status -u root -p
Enter password:
~~
Uptime: 10578 Threads: 1 Questions: 4809 Slow queries: 589 Opens: 1321 Flush tables: 1 Open tables: 348 Queries per second avg: 0.454
Uptime : MySQL server 시삭된 후 현재 시간 (초 단위)
Threads : 현제 DB 서버에 연결된 유저수
Questions : 서버 시작후 지금까지 요청된 쿼리수
Slow queries : mysql 설정파일에 슬로우쿼리의 쿼리시간 이상을 가진 요청수
Opens : 서버가 시작된 후 현재까지 열렸던 테이블수
Open tables : 현재 열려 잇는 테이블 수
Queries per second avg : 평균 초단 쿼리수
[출처] https://jy-p.tistory.com/50
반응형
'리눅스 > MySQL' 카테고리의 다른 글
CentOS 7 에서 MySQL 8.0.29 설치 (gcc 관련 에러시에만 참고) (0) | 2022.06.20 |
---|---|
CentOS 7 에서 MySQL client 8.0.21 설치하기 (caching_sha2_password 지원) (0) | 2022.06.09 |
[MySQL] Slave_IO_Running: Connecting 조치 방법 (0) | 2022.05.11 |
MySQL 8.0 SSL 설정하기 (0) | 2021.12.15 |
Install MySQL 8.0 (yum) with Galera cluster in CentOS 7 (1) | 2021.11.08 |
댓글()