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 results....

Check the number of Apache in Linux에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.



원문링크 : Check the number of Apache in Linux