- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: tcp services
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
01-17-2003 04:37 AM
01-17-2003 04:37 AM
tcp services
Hi all
I am having a L 1000 running hp-unix 11.00 on it. i am trying to start oracle in it. And i am using port 80 for my listener process.which is supposed to be used by http.
i hv disable the port for http by putting '#' in /etc/services.
i am getting problem while starting the listener process.when i check the log its giving port binding error.
Now is there any way to know whether the http services is really stoped or not/and any way to know what are the services started in which port ?
thanks in advance.
regards
S.Sudhir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2003 04:44 AM
01-17-2003 04:44 AM
Re: tcp services
run 'rpcinfo' to check which services the listener is looking for.
Regards ...
Armin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2003 04:47 AM
01-17-2003 04:47 AM
Re: tcp services
lsof -i
By example:
lsof -i tcp:80
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2003 04:49 AM
01-17-2003 04:49 AM
Re: tcp services
#ps -aef|grep -i http
shows the http processes if running.
to find which port it is using, advise you to use lsof.
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.48/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2003 04:49 AM
01-17-2003 04:49 AM
Re: tcp services
What kind of error do your get? EACCESS/Permission denied? Port 80 is normally a protected socket, only for root access.
Best regards...
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2003 06:32 PM
01-17-2003 06:32 PM
Re: tcp services
Commenting out a service port in /etc/services
will not disable the port.
Only way to free a used port is to stop the service using that port. In your case , it is the webserver.
#netstat -an | more
you will see port 80 in LISTENING state with your servers IP address. That means your webservice is listening in that 80 port.
#ps -ef | grep http
Kill gracefully all the running httpd instances.
Start oracle now. your problem is solved.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2003 06:40 PM
01-17-2003 06:40 PM
Re: tcp services
But it's not recommended to run oracle listener on port 80(you'd better run it on a port more than 1024)