- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Killing a process bound to a port
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
03-10-2004 08:43 AM
03-10-2004 08:43 AM
# netstat -na|grep 11000
udp 0 0 *.11000 *.*
I tried lsof but that did not identify what process was tied to 11000, I also did a reread of the inetd, using inetd -c to no avail. Except for killing inetd and restarting it, which might drop the databases (production)...is there another way to remove this port?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2004 08:53 AM
03-10-2004 08:53 AM
Re: Killing a process bound to a port
not sure the exact syntax tho. I'll see if I can find it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2004 05:44 AM
03-11-2004 05:44 AM
SolutionInted would only be listening on that port if there was a corresponding entry in /etc/inetd.conf.
While there are ways one should almost NEVER use to forcibly terminate a TCP connection via ndd, there is no such thing for UDP.
If you suspect inetd has a socket open bound to that port, you migth see what lsof says inetd has open.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2004 05:52 AM
03-11-2004 05:52 AM
Re: Killing a process bound to a port
lsof -i udp:port_no.
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2004 06:32 AM
03-11-2004 06:32 AM
Re: Killing a process bound to a port
#lsof -i udp:11000
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
PA_R 12607 applmgr 34u inet 0x94280a68 0t0 UDP *:11000 (Idle)
Thanks guys!