- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Setup NTP for HP-UX 11.00
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
05-23-2004 09:19 PM
05-23-2004 09:19 PM
i am currently setting up the ntp for the servers.
i am not sure where to start and what else to do.
i have read through the documents but is seems to be quite confusing.
does anyone have any simple instructions/tips and hints on how it is suppose to be implemented?
Regards,
Calvin
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2004 09:30 PM
05-23-2004 09:30 PM
Re: Setup NTP for HP-UX 11.00
Try this link below
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=500591
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2004 12:03 AM
05-24-2004 12:03 AM
SolutionU can follow like this.
0) Check NTP patch is there or not. In our case it is PHNE_27223.
1)Add following lines on /etc/ntp.conf file. (Check ip address)
server 192.5.41.40 #tick.usno.navy.mil (Time server name)
restrict default notrust nomodify
restrict 192.5.41.40 nomodify
# The local host is unrestricted ( no
flags ).
restrict 127.0.0.1
restrict (localhostipaddr)
driftfile /etc/ntp.drift
2)Then touch /etc/ntp.conf
3) Then Start ntp daemon and your server is setup
/usr/sbin/xntpd
4)To make sure it start at boot time edit /etc/rc.config.d/netdaemons file
Add export NTPDATE_SERVER=tick.usno.navy.mil(Time Server name)
and replace export XNTPD=0 with
export XNTPD=1
5)To verify
ntpq -p
##man xntp and or ntp.conf read it there, but basically it goes something like below which is not in my system.
## edit /etc/rc.config.d/xntp & make NTP=1
##edit /etc/ntp.conf appropriately
##/sbin/init.d/xntp start
Regards
Tapas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2004 12:09 AM
05-24-2004 12:09 AM
Re: Setup NTP for HP-UX 11.00
Startup sam --> Time --> NTP network time sources.
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2004 02:43 AM
05-24-2004 02:43 AM
Re: Setup NTP for HP-UX 11.00
ntp is the network time protocol service while xntpd is nothing but the daemon which is must to run the ntp service.
How to configure the SRV#1 as the master and SRV#2 as the slave in order these 2 servers will have the same time
In this case.
Login as root to SRV#1 server and:
1) Edit " /etc/rc.config.d/netdaemons " file on the SRV#1 Server as follows : export NTPDATE_SERVER=
export XNTPD=1
export XNTPD_ARGS=
2)Edit " /etc/ntp.conf " file in the SRV#1 server with the below entries at the end of the file :
server
3) To Maually start xntpd daemon : # /sbin/init.d/xntpd start
ON SRV#2 side :
1)Edit " /etc/rc.config.d/netdaemons " file on the clients side as follows :
export NTPDATE_SERVER=
export XNTPD=1
export XNTPD_ARGS=
2)Edit " /etc/ntp.conf " file on the SRV#2 server and add below entries at the end of the file:
server
3)#/sbin/init.d/xntpd start
In case the time synchronisation doesn't start it will definately start at the reboot of respective servers. 95 % it will start w/o reboot.
Regards, Ernesto