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
02-11-2003 02:36 AM
02-11-2003 02:36 AM
I have a little lan with 2 servers and 10 client.
I want to set serverA to a NTP server with it's time.
what I must to do?
tnx
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2003 02:39 AM
02-11-2003 02:39 AM
Re: ntp
find one ntp server on the internet and setup the ntp with sam. Sam will do all the work for U.
check it with:
ntpq -p
BR,
Jannik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2003 02:42 AM
02-11-2003 02:42 AM
Re: ntp
No I don't want to use an Internet server.
I want to use my serverA for npt primary server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2003 02:45 AM
02-11-2003 02:45 AM
Solutionbasic and good doc.
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x199dd5fab40ed6118ff40090279cd0f9,00.html
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2003 02:51 AM
02-11-2003 02:51 AM
Re: ntp
on serverb go into sam -> time -> NTP Network Time Source and remove any entry and stop the NTP service.
From actions (in the top) add a server servera and then start the NTP service again.
BR,
Jannik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2003 02:55 AM
02-11-2003 02:55 AM
Re: ntp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2003 02:57 AM
02-11-2003 02:57 AM
Re: ntp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2003 12:04 PM
02-11-2003 12:04 PM
Re: ntp
I did the similar thing before, I don't need to use ntp to set my server to be exactly as atomic clock, I just need to sync the clock on 2 servers for application reasons. what I did was:
1, use "date" command to set the time of the 2 servers to be as sync as possible (within 30 seconds offset, otherwise, there maybe problems with ntpdate)
2, run "ntpdate -b serverA" from server B to initially sync the 2 servers. (note that xntpd was not started yet then)
3, on serverA (ntp server) /etc/ntp.conf file set "server 127.127.1.1" and start xntpd, it means it will use its own clock as time source.
4, on serverB (ntp client) /etc/ntp.conf file
set "server serverA_IP" and "driftfile /var/adm/ntp.drift" then start xntpd.
that's it.
thanks,
Gary