uptime
서버 로드 에버리지 확인
free -m
메모리 사용량 확인
df -h
디스크 사용량 확인
cannot create temp file for here-document: No space left on device ...
-> 웹 서버 로그로 디스크가 꽉 찬 경우
$ cd /
$ du -h --max-depth=1 | grep G
--max-depth=1
옵션으로 / 디렉토리의 한단계 하위 디렉토리까지 확인할 수 있다.
$ du -sh * | grep G
*
옵션으로 모든 파일 확인 가능
$ watch -n 시간 'ls -al | grep /var/log/nginx/access.log'
$ watch -n 시간 'df -h'