- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Who's using port 80 ?
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-17-2002 06:19 AM
04-17-2002 06:19 AM
I'd like to know which processes (if any) are using port 80 on my HP-UX 11.00 server. I'm trying to start an Oracle service on this port and it's failing so I'd like to know if something else is already using port 80. Is there a way of telling ?
Many thanks and regards,
Preet
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2002 06:21 AM
04-17-2002 06:21 AM
Re: Who's using port 80 ?
see /etc/services for variations.
More than likely someone is running a webserver on this server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2002 06:23 AM
04-17-2002 06:23 AM
Re: Who's using port 80 ?
use:
grep 80 /etc/services
it's http server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2002 06:23 AM
04-17-2002 06:23 AM
Re: Who's using port 80 ?
check /etc/services
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2002 06:28 AM
04-17-2002 06:28 AM
Solutionhttp://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.61/
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2002 07:08 AM
04-17-2002 07:08 AM
Re: Who's using port 80 ?
Many thanks for the link to lsof which I've downloaded and installed. The install of lsof includes a file called /otp/lsof/man/man8/lsof.8. Can you advise how to read this as a man page ?
Many thanks and regards,
Preet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2002 07:18 AM
04-17-2002 07:18 AM
Re: Who's using port 80 ?
# export MANPATH=$MANPATH:/opt/lsof/man
# man lsof
You should be able to get the information you want by running the following lsof command:
# lsof -i -n | grep 80 | grep LISTEN
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2002 07:19 AM
04-17-2002 07:19 AM
Re: Who's using port 80 ?
You can mv the man file under /usr/share/man/man.8/lsof.8 and the do a man lsof as this directory is the default man path. or you can do a man lsof under the sam directory to read it .
And for port 80 do a lsof | grep 80 to know who is using it.
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2002 07:19 AM
04-17-2002 07:19 AM
Re: Who's using port 80 ?
man lsof
You probably want to add it to your profile.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2002 07:52 AM
04-17-2002 07:52 AM
Re: Who's using port 80 ?
Port 80 is by deault to be used by web services.
thanks,
-pap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2002 06:16 AM
04-18-2002 06:16 AM
Re: Who's using port 80 ?
Make that page permanent for all users by adding the path to /etc/MANPATH
Another aside... If your ISP provider has banned use of a webserver on port 80 and blocked those packets, just switch it to another port such as 81. You will have to provide your users with the port number, since 80 is the assumed default.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2002 09:57 AM
04-18-2002 09:57 AM