- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Port 80 Problem
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
04-18-2003 09:27 PM
04-18-2003 09:27 PM
Port 80 Problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2003 09:38 PM
04-18-2003 09:38 PM
Re: Port 80 Problem
Thanks
Zafar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2003 09:55 PM
04-18-2003 09:55 PM
Re: Port 80 Problem
To check whether port 80 is open .
#netstat -an | grep -i listen | grep 80
It the output is somewhat like this then the web server is running in port 80
0.0.0.0:80 LISTEN
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2003 10:00 PM
04-18-2003 10:00 PM
Re: Port 80 Problem
Thanks
Zafar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2003 10:03 PM
04-18-2003 10:03 PM
Re: Port 80 Problem
regards
shem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2003 10:12 PM
04-18-2003 10:12 PM
Re: Port 80 Problem
What is the webserver you are running ?
apache ?
#httpd
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2003 10:20 PM
04-18-2003 10:20 PM
Re: Port 80 Problem
I am running Netscape Enterprise Server 4.0
regards
shem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2003 10:25 PM
04-18-2003 10:25 PM
Re: Port 80 Problem
Have to started the netscape server ?
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2003 09:03 AM
04-19-2003 09:03 AM
Re: Port 80 Problem
You can also use 'lsof' to investigate port 80.
lsof -i tcp:80
lsof -i udp:80
This will give you an idea of what application processes are bound to port 80.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2003 04:34 AM
04-21-2003 04:34 AM
Re: Port 80 Problem
netstat -a | grep http
ryan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2003 05:03 AM
04-21-2003 05:03 AM
Re: Port 80 Problem
netstat -a | grep http
will do it for you - also, a simple way to check a server remotely - is telnet to port 80:
telnet yourserver 80
Connected to yourserver.
Escape character is '^]'.
That means there is there is a webserver running on port 80 (ok - maybe not - as someone could use port 80 for something else - but that would be rare).
Rgds...Geoff