CentOS 기준.. 매번 사용하지 않는 것들이라 기록해둔다.
OS 버전 확인
cat /etc/redhat-release(el7 ~) or cat /etc/issue(~el6)
커널 버전 확인
cat /proc/version
Kernel bits 확인
getconf WORD_BIT
cpu 정보 확인
cat /proc/cpuinfo
실 CPU 수 : grep ^processor /proc/cpuinfo | wc -l
CPU당 코어 수 : grep 'cpu cores' /proc/cpuinfo | tail -1
메모리
cat /proc/meminfo
디스크 용량 확인
df -h
'개발/경험 > linux-Solution' 카테고리의 다른 글
ES QueryDSL에서 aggregation에 order 설정 제한 (0) | 2019.01.03 |
---|---|
Elasticsearch 특정 문서만 지우기 (0) | 2018.09.11 |
시스템 기본 사양 확인하기 (0) | 2018.08.30 |
Elasticsearch cluster 설정 (0) | 2018.07.25 |
logstash와 mysql 연동 (0) | 2018.07.24 |
logstash 인덱스 수정, 조건 설정하는 방법 (0) | 2018.07.16 |