Operating System - HP-UX
1826780 Members
1424 Online
109702 Solutions
New Discussion

Re: How to get the version of httpd on my HP server?

 
SOLVED
Go to solution
MA Qiang
Regular Advisor

How to get the version of httpd on my HP server?

Thank you!
4 REPLIES 4
Bharat Katkar
Honored Contributor

Re: How to get the version of httpd on my HP server?

Hi,
See if this works:

# swlist -v -l product

Hope that helps.
Regards,
You need to know a lot to actually know how little you know
Naveej.K.A
Honored Contributor

Re: How to get the version of httpd on my HP server?

Hi,

$ telnet localhost 80
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'

type anything here and it will disconnect giving the version info:



401 Authorization Required

Authorization Required


This server could not verify that you
are authorized to access the document
requested. Either you supplied the wrong
credentials (e.g., bad password), or your
browser doesn't understand how to supply
the credentials required.




Apache/1.3.29 Server at xx.xx.xx.xx Port 80


Connection closed by foreign host.
$

Regards,
--Naveej
practice makes a man perfect!!!
Rajeev  Shukla
Honored Contributor
Solution

Re: How to get the version of httpd on my HP server?

use
$APACHE_HOME/bin/httpd -v

Cheers
Rajeev
MA Qiang
Regular Advisor

Re: How to get the version of httpd on my HP server?

Thank you!