- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NTP 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
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
09-25-2001 01:49 AM
09-25-2001 01:49 AM
NTP Problem
Everytime xntpd services start, Server prompt error messages of " /usr/sbin/ntpdate : the NTP socket is in use , existing" . I notice that the xntpd services is not startup properly.
Anyone know what's going wrong?
Thanks in advanced !!!
Regard,
Pat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2001 01:55 AM
09-25-2001 01:55 AM
Re: NTP Problem
netstat -na|grep 123
and look for an entry like:
udp 0 0 *.123 *.*
If this you do see this, then some other process is using NTP's port. You can trace down the process using lsof using the syntax:
lsof -i UDP:123
which will give you the proc id and the owner of the proc (most likely root since that's a privledged port).
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2001 03:12 AM
09-25-2001 03:12 AM
Re: NTP Problem
Are you trying to run BOTH 'ntpdate' and 'xntpd' concurrently? If so, this is the problem. Both processes use the same port. Do a 'ps -ef|grep ntpdate' to verify this.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2001 04:08 AM
09-25-2001 04:08 AM
Re: NTP Problem
Also take a look at this thread for some more information on ntp:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0xb6388ffa98a2d5118ff10090279cd0f9,00.html
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2001 08:35 AM
09-26-2001 08:35 AM
Re: NTP Problem
Applying patch PHNE_23717 seems to have resolved this problem.
If not starting at reboot, I agree that you should verify that nothing else is using that port. If you determine that nothing else is using that port during normal runtime, possibly move the ntp startup to a later time in the bootup???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2001 09:14 AM
09-26-2001 09:14 AM
Re: NTP Problem
-Sri