- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- hacl-cfg/udp: bind: Address already in use
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
02-20-2006 02:18 AM
02-20-2006 02:18 AM
Feb 20 08:32:59 dbqrtep2 inetd[3687]: hacl-cfg/udp: bind: Address already in use
Feb 20 08:32:59 dbqrtep2 inetd[3687]: hacl-cfg/udp: Service enabled
Feb 20 08:42:59 dbqrtep2 inetd[3687]: hacl-cfg/udp: bind: Address already in use
Feb 20 08:42:59 dbqrtep2 inetd[3687]: hacl-cfg/udp: Service enabled
Feb 20 08:52:59 dbqrtep2 inetd[3687]: hacl-cfg/udp: bind: Address already in use
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2006 02:34 AM
02-20-2006 02:34 AM
Re: hacl-cfg/udp: bind: Address already in use
I suspect what really happended is that you either incorrectly modified inetd.conf so that there is a parsing error or you have more that one inetd running because you restarted inetd rather than sending a SIGHUP (kill -1) to the already running inetd. THe correct process is to issue an inetd -c command -- which does send a SIGHUP to the inetd process and triggers a reconfiguration of a running inetd.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2006 03:01 AM
02-20-2006 03:01 AM
Re: hacl-cfg/udp: bind: Address already in use
The only thing that is use the the 5302 is the localhost:
tcp 0 0 127.0.0.1.5302 127.0.0.1.61437 ESTABLISHED
Thanks,
Josh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2006 03:27 AM
02-20-2006 03:27 AM
Re: hacl-cfg/udp: bind: Address already in use
Check to make sure you don't have any dupe IPs.
Check to make sure your standby lans don't already have IP addresses assigned to them.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2006 04:24 AM
02-20-2006 04:24 AM
Re: hacl-cfg/udp: bind: Address already in use
dbqrtep2:/root#netstat -an |grep 5302
tcp 0 0 192.168.222.12.65302 192.168.222.12.10073 ESTABLISHED
tcp 0 0 127.0.0.1.61437 127.0.0.1.5302 ESTABLISHED
tcp 0 0 *.5302 *.* LISTEN
tcp 0 0 192.168.222.12.10073 192.168.222.12.65302 ESTABLISHED
tcp 0 0 127.0.0.1.5302 127.0.0.1.61437 ESTABLISHED
tcp 0 0 127.0.0.1.55966 127.0.0.1.5302 TIME_WAIT
tcp 0 0 127.0.0.1.55967 127.0.0.1.5302 TIME_WAIT
tcp 0 0 127.0.0.1.56010 127.0.0.1.5302 TIME_WAIT
tcp 0 0 127.0.0.1.56232 127.0.0.1.5302 TIME_WAIT
tcp 0 0 127.0.0.1.56098 127.0.0.1.5302 TIME_WAIT
tcp 0 0 127.0.0.1.56106 127.0.0.1.5302 TIME_WAIT
tcp 0 0 127.0.0.1.56088 127.0.0.1.5302 TIME_WAIT
tcp 0 0 127.0.0.1.56175 127.0.0.1.5302 TIME_WAIT
tcp 0 0 127.0.0.1.56191 127.0.0.1.5302 TIME_WAIT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2006 11:20 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2006 01:22 AM
02-21-2006 01:22 AM
Re: hacl-cfg/udp: bind: Address already in use
Thanks again for the help
-Josh