- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NTP startup
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
10-02-2001 05:43 AM
10-02-2001 05:43 AM
Any help would be appreciated.
Cheers
Paul
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 05:51 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 05:52 AM
10-02-2001 05:52 AM
Re: NTP startup
export NTPDATE_SERVER=
export XNTPD=1
export XNTPD_ARGS=
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 05:53 AM
10-02-2001 05:53 AM
Re: NTP startup
Sounds like your rc*.d links are missing. Run the following and see how it compares:
cd /sbin
find *.d -name "*xntpd" | xargs ll
-r-xr-xr-x 1 bin bin 1823 Sep 13 1997 init.d/xntpd
lrwxr-xr-x 1 root sys 18 Jun 10 1996 rc1.d/K340xntpd -> /sbin/init.d/xntpd
lrwxr-xr-x 1 root sys 18 Jun 10 1996 rc2.d/S660xntpd -> /sbin/init.d/xntpd
Also have a look in /etc/rc.log for any problems. If "/sbin/init.d/xntpd start" works, your config file is probably OK.
Rgds, Robin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 05:55 AM
10-02-2001 05:55 AM
Re: NTP startup
edit file /etc/rc.cofig.d/netdaemons
export NTPDATE_SERVER=
export XNTPD=1
export XNTPD_ARGS=
Then
#/sbin/rc2.d/S660xntpd stop
#/sbin/rc2.d/S660xntpd start (If this works then xntpd will start at boot time)
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 05:59 AM
10-02-2001 05:59 AM
Re: NTP startup
Simply ln -s /sbin/init.d/xntpd /sbin/rc2.d/K660xntpd and ln -s /sbin/init.d/xntpd /sbin/rc1.d/K340xntpd.
These links will start and stop the xntpd daemon automatically.
If you have no xntpd script in /sbin/init.d then simply copy one of the scripts already in /sbin/init.d to xntpd. You then modify the start), start_mesg), stop), and stop_mesg sections to do the appropriate actions. Finally make the links as above and you are good to go.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 06:19 AM
10-02-2001 06:19 AM
Re: NTP startup
Check the file /etc/rc.cofig.d/netdaemons
for following variable -
export XNTPD=1
The value should be 1 for automatic startup at boot.
Thanks.
Prashant.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 09:48 AM
10-02-2001 09:48 AM
Re: NTP startup
Like the others have already told, edit /etc/rc.config.d/netdaemons and modify the line XNTPD=0 to
XNTPD=1
At the next reboot the xntpd daemon should restart on its own.
Hope this helps.
thanks