로딩
티스토리 데이터 처리 중입니다.

Check the number of Apache in Linux

 Check the number of Apache in Linux

ps -ef | grep httpd | wc -l Check process name with httpd in ps watch 'netstat -an | grep EST | wc -l' Check the number of ESTs with netstat netstat -nap | grep :80 | grep ESTABLISHED | wc -l Check 80 port with netstat - If http is turned to a port other than 80 port, modify it and search for it You can check it out in these three ways. Three may have different resu.....