- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- configure NTP client
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
11-18-2005 12:15 AM
11-18-2005 12:15 AM
configure NTP client
Can you tell me how I configure an NTP client but ensure I use slew so that the time does not just jump to the correct time, but adjusts slowly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2005 12:25 AM
11-18-2005 12:25 AM
Re: configure NTP client
Chapter-7 of the "Installing and Administering Internet Services" guide discusses NTP configuration and support:
http://docs.hp.com/en/B2355-90685/index.html
To configure slewing, set 'XNTPD_ARGS=-x' in '/etc/rc.config.d/netdaemons'.
See the man pages for 'xntpd(1M)' too, for more information.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2005 12:37 AM
11-18-2005 12:37 AM
Re: configure NTP client
it does not specify this in the document
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2005 12:41 AM
11-18-2005 12:41 AM
Re: configure NTP client
#./sbin/init.d/xntpd -x
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2005 12:50 AM
11-18-2005 12:50 AM
Re: configure NTP client
As I noted, to configure slewing, set 'XNTPD_ARGS=-x'in '/etc/rc.config.d/netdaemons'.
Then do:
# /sbin/init.d/xntpd start
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2005 01:58 AM
11-18-2005 01:58 AM
Re: configure NTP client
so this means you have ntp server
OK.
i have just done it since 3 days onto my
10 hp3600 series WSs.They are all working properly except one;
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=975769
Let me go!
there are 2 ways to setup a ntp client
from command and using SAM.i prefered SAM
and also a command prompt just for to modify
/etc/rc.config.d/netdaemons file on clients
side.
On client side;
go to file /etc/rc.config.d/netdaemons
edit it;then;find the strings;
export NTPDATE_SERVER=""
XNTPD=1
export XNTPD_ARGS=
Just set your ntp server name into;
export NTPDATE_SERVER="ntp_server_name"
then save it!!!
Be sure your ntp server name known from your
clients if so;
Go TO SAM-TIME/select NTP BroadCasting
and "enable Receiving time Broadcasts"
and then start NTP
That's it!!!!
synchronization may depend onto differences
between yout ntp_server&client clock time at first if the times are close to each other then your client synchronization will be fast.
Hope this is clear!!!
Good Luck,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2005 02:19 AM
11-18-2005 02:19 AM
Re: configure NTP client
edited /etc/rc.config.d/netdaemons
checked the timezone is correct
edited /etc/ntp.conf
and run command: ntpdate -B SERVERADDRESS (prior to starting ntpd daemon) the time difference between the server and client was quite big. how do i check the time difference again before i start the ntp daemon???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2005 02:33 AM
11-18-2005 02:33 AM
Re: configure NTP client
If the time difference between your server and your NTP source is too great (>= 1000 seconds), XNTPD will die. You may need to plan a reboot to step the time difference to a very small delta. Re-setting the time can play havoc with databases and some applications.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2005 02:37 AM
11-18-2005 02:37 AM
Re: configure NTP client
#ntpq -p
Will show the time difference between the server and the client. Also apart from reboot you can manually chnage time a bit closer to time in server, (after shutting databases if any) and then let the time synchronize before restarting the databases.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2005 03:00 AM
11-18-2005 03:00 AM
Re: configure NTP client
#ntpdate -B SERVERADDRESS (to bring it closer in line with the server's time)
#ntpdate -q SERVERADDRESS (to check the difference in time between the two before starting ntpd daemon).
This is correct for when wanting to slew but not restarting the server. This should be used in conjunction with the normal procedure i.e. /etc/rc.config/netdaemons & /etc/TIMEZONE & /etc/ntp.conf files should be changed before this, and ntpd daemon should be started after this.