RHEL에 ssh로 접속하면 클라이언트에서 접속이 일정시간 지나면 끊기게 된다. 이게 매우 귀찮았던 관계로 찾아보고 적어놓는다. /etc/ssh/sshd_config 파일을 vi에디터로 열어 다음 항목의 주석을 풀어주자.ClientAliveInterval 600 ClientAliveCountMax 3 위 항목의 의미는 다음과 같다.ClientAliveInterval 600서버로 데이터의 수신이 없을시 클라이언트가 살아있는지 확인 신호를 보내는 간격ClientAliveCountMax 3확인신호를 지정된 횟수만큼 보내고 응답이 없으면 세션을 종료
Table 별 Size 확인 QuerySELECT table_name, table_rows, round(data_length/(1024*1024),2) as 'DATA_SIZE(MB)', round(index_length/(1024*1024),2) as 'INDEX_SIZE(MB)'FROM information_schema.TABLESwhere table_schema = '데이터베이스이름'GROUP BY table_name ORDER BY data_length DESC LIMIT 10; 막상 많이 사용량이 큰 Database를 찾고나니, 어떤 Table이 문제인지 찾고 싶을 때 사용.
Database별 Size 확인 QuerySELECTcount(*) NUM_OF_TABLE,table_schema,concat(round(sum(table_rows)/1000000,2),'M') rows,concat(round(sum(data_length)/(1024*1024*1024),2),'G') DATA,concat(round(sum(index_length)/(1024*1024*1024),2),'G') idx,concat(round(sum(data_length+index_length)/(1024*1024*1024),2),'G') total_size,round(sum(index_length)/sum(data_length),2) idxfracFROM information_schema.TABLESGROU..
- Total
- Today
- Yesterday
- centos
- OSS
- MySQL
- OS
- tip
- cpu
- Size
- cycle
- Java
- dbms
- version
- Bit
- query
- Redhat
- Windows
- error
- date
- aix
- db
- 태그를 입력해 주세요.
- Linux
- rhel
- Solaris
- yum
- centos7
- NTP
- storage
- It
- hostname
- database
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |