nginx 메모리 사용량

리눅스/APACHE|2015. 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 개 프로세스 구동 가능
 


반응형

댓글()