tpmc 구하기전 참조하긔

 

#netstat -l 또는 netstat -nap | grep LISTEN (LISTEN 되는 모든 포트)
#netstat -nap | grep ESTABLISHED | wc -l ( 모든 서비스 동시 접속자 수)
#netstat -nap | grep :80 | grep ESTABLISHED | wc -l( 웹 동시 접속자 수)
#netstat -n|grep -F :80|egrep '(ESTAB|SYN)'|awk '{print $5}'|sed 's/:[0-9]*//'|sort -u|wc -l  (웹서버 커넥션수 체크)

'server > apache' 카테고리의 다른 글

ww  (0) 2010.02.10
apache + php segmentation fault  (0) 2010.02.10
Apache 403에러 대처법  (3) 2008.02.14

+ Recent posts