- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to kill running address
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-05-2001 08:11 AM
04-05-2001 08:11 AM
how to kill running address
My informix engines needs to have a port running in order for remote server to connect to our local database. I have this entry on my /etc/services file
informix_db1 8735/tcp
Now everytime I run informix process that use this port number an error occurs which is
"# 25505 The sqlexecd daemon cannot bind a name to the socket.: Address already in use"
When I run to check the port if it's already in use and this port is really in use
# netstat -an | grep 8735
tcp 0 0 15.56.80.64.8735 *.* LISTEN
So my question is, is there a way to kill this port process so I can use it again and re-run my process?
Thanks in advance
Joey
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2001 08:46 AM
04-05-2001 08:46 AM
Re: how to kill running address
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2001 09:11 AM
04-05-2001 09:11 AM
Re: how to kill running address
I'd advise using 'lsof' (need to download it from the HP porting archive) and searching for the application using it...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2001 09:17 AM
04-05-2001 09:17 AM
Re: how to kill running address
Download lsof on http://gatekeep.cs.utah.edu and run it on your machine:
# ./lsof > lsof.out
The output shows you all open files for all processes running. You can then determine whether it is ok to kill the process that listens on the port.
If you have an idea what process is listening, you can also do this in glance (select process -> open files).
Carsten
In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move. -- HhGttG
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2001 10:25 AM
04-05-2001 10:25 AM
Re: how to kill running address
lsof -i @hostname:portnumber
this will show you all active processes on the port number.