- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP Server Couldn't communicate with a web server
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 02:50 AM
07-25-2005 02:50 AM
We use a company to provide a web service to our customer. The Company host the web server for us. The web server need to access the database on our HP server to retrieve info. About two weeks ago, the web server couldn't communicate with our HP server anymore.
Our HP server is sitting behind a firewall. The firewall has the IP's and ports open for the web serve to access our HP server.
Could you please suggest a way to test & to nail the problem? I checked with our Network folks, they said the firewall is open. I tried traceroute. Traceroute couldn't even get out of our HP server's domain.......
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 02:55 AM
07-25-2005 02:55 AM
Solutiondo You have some auditing that would show the webserver's accesses over the period?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 03:11 AM
07-25-2005 03:11 AM
Re: HP Server Couldn't communicate with a web server
If yes, can it ping to the gateway ( It should be a router in your network.
netstat -in will show you your default gateway details.
/etc/rc.config.d/netconf file has configuration details.
Also check firewall for ICMP settings for your server and Web server
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 03:27 AM
07-25-2005 03:27 AM
Re: HP Server Couldn't communicate with a web server
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 03:33 AM
07-25-2005 03:33 AM
Re: HP Server Couldn't communicate with a web server
However the web server has ICMP disabled.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 03:51 AM
07-25-2005 03:51 AM
Re: HP Server Couldn't communicate with a web server
if you see /usr/sbin/inetd -l in the output you are in good shape. if not, i.e. you only see /usr/sbin/inetd, then you need to restart it with logging enabled first. To do this:
/usr/sbin/inetd -k
/usr/sbin/inetd -l
now your inetd is logging events into your syslog. watch your syslog with
tail -f /var/adm/syslog/syslog.log
while you or someone from this external service provider is creating some traffic heading for your internal server and see if anything is getting logged in the syslog.
if so, post the messages here to determine what is happening. If nothing gets logged to syslog, contact your firewall admins to put a sniffer between these two servers to see what is going on.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 04:41 AM
07-25-2005 04:41 AM
Re: HP Server Couldn't communicate with a web server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2005 05:07 AM
07-25-2005 05:07 AM
Re: HP Server Couldn't communicate with a web server
this is what you need to make sure, i.e., the packets/requests from these external guys, are hitting your internal server. And in short of putting a sniffer down the line, all you can do is watch syslog or run
netstat -an | grep port_number
commands like crazy to see if they establish any successfull sessions with your server, where port number is the port your server is listening to these guys requests.
if you can not provide this log data, you will not be able to get help magically.
UNIX because I majored in cryptology...