- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NTP Socket problem
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
Discussions
Discussions
Discussions
Forums
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
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
тАО11-01-2000 04:58 AM
тАО11-01-2000 04:58 AM
I am using ntpdate to pull time info from our master router. Up until now this has been working fine.
All of a sudden, I am receiving the following error:
The NTP socket is in use, exiting.
I know that the socket on the router is working as I sync several servers to the router and they are working correctly.
This is only happening on the one server.
I have tried killing and restarting the xntpd process but this has not helped.
Any suggestions?
Thanks,
Craig
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2000 05:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2000 05:19 AM
тАО11-01-2000 05:19 AM
Re: NTP Socket problem
But, killing a process does not necessarily free up everything. A file could have been left open, so to the system....something is still trying to hold onto the socket. Or another process may be using the file, even though you killed one, the other is using it.
You may want to try using lsof (if you have this), it is a very handy tool that you can use to see what files are still open. The other thing would be, make sure when you stopped the process...everything got stopped. Do a ps -ef | grep ntp and if need be do a sigkill to get rid of anything that shouldn't be there. You can also use fuser to check for something hanging too.
Just a couple thoughts,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2000 05:20 AM
тАО11-01-2000 05:20 AM
Re: NTP Socket problem
Check /var/adm/syslog/syslog.log for the full message.
Are your running BOTH 'ntpdate' and 'xntpd' concurrently? If so, this is the problem.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2000 06:56 AM
тАО11-01-2000 06:56 AM
Re: NTP Socket problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2000 11:17 AM
тАО11-01-2000 11:17 AM
Re: NTP Socket problem
The is 'lsof' which will enable you to comfirm this is what is happening. If it isn't happening, then 'lsof' will tell you what is on the port.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2000 11:32 AM
тАО11-01-2000 11:32 AM
Re: NTP Socket problem
Thanks for all the replies!
Craig