nginx 메모리 사용량
리눅스/APACHE2015. 1. 16. 16:58
반응형
#!/bin/bash
nginx total 메모리 사용량
ps aux | grep nginx | awk '{print $6}' | awk '{total= total +$1} END {print total/1024}' >> apache_all.txt
nginx 구동중인 프로세스 갯수
ps aux | grep nginx | wc -l>> apache_process.txt
total 사용량 / 프로세스 갯수 => nginx 1개당 메모리 사용량
total 메모리 / nginx 1개당 메모리 사용량 => nginx 최대 프로세스 갯수
평균 메모리 1G 당 nginx 600 개 프로세스 구동 가능
반응형
'리눅스 > APACHE' 카테고리의 다른 글
resin 설치 (0) | 2015.01.16 |
---|---|
.htaccess 사용 못하게 하기 (0) | 2015.01.16 |
npm ERR! Error: No compatible version found: source-map@'>=0.1.7- <0.2.0-' (0) | 2015.01.16 |
없는파일 접근시 404에러가 아니고 403에러가 뜰때 (0) | 2015.01.16 |
특정 디렉토리의 특정 확장자 접근시 접속차단하기.(PHP 실행방지) (0) | 2015.01.16 |
댓글()