1753964 Members
7210 Online
108811 Solutions
New Discussion юеВ

http services

 
new2008
Advisor

http services

Hi,

Can any1 help me to knw how to find whether http process is running on server or not
3 REPLIES 3
Johnson Punniyalingam
Honored Contributor

Re: http services

Hi ,

try this

# ps -ef |grep httpd

or

see the below example
=====================

# ps -ef |grep apache
root 1747 1745 0 19:13:48 ? 0:00 /opt/apache/bin/rotatelogs /opt/apache/logs/combined_access_
apache 1760 1745 0 19:13:48 ? 0:00 /opt/apps/apache/apache2.0.48/bin/httpd -d /opt/apps/apache/
root 1745 1 0 19:13:48 ? 0:09 /opt/apps/apache/apache2.0.48/bin/httpd -d /opt/apps/apache/
apache 12523 1745 0 06:07:31 ? 0:00 /opt/apps/apache/apache2.0.48/bin/httpd -d /opt/apps/apache/
root 17859 17260 0 06:59:06 ttyp1 0:00 grep apache
Problems are common to all, but attitude makes the difference
Steven Schweda
Honored Contributor

Re: http services

Define "http process". httpd (server) or
some HTTP client?

If you're looking for a server, start a Web
browser, or run wget, and try to talk to it?
new2008
Advisor

Re: http services




Thnk you vry much :)