- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- time server ?
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-20-2005 04:53 AM
11-20-2005 04:53 AM
i m running multiple servers(NFS, Samba, Sendmail etc) all on redhat linux ES 4.0 and FC 2.
I want that All servers have same system time, i.e all servers should be client of one "time server", all servers get their/set their from "time server"
what should i do ?
any tutorial ?
Any help will be highly Appreciated
Regards
Maaz
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2005 06:28 AM
11-20-2005 06:28 AM
SolutionConnect that server to a valid outside time server.
chkconfig ntpd on
service ntpd on
#may be xntp or ntp depending on distribution.
Have all other servers connect to this server in their ntp.conf files
You may need to manually adjust the time if the servers are too far off the norm, they will refuse to synch up.
For more: http://www.ntp.org
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2005 10:40 PM
11-20-2005 10:40 PM
Re: time server ?
http://www.brandonhutchinson.com/Using_ntp_with_Red_Hat_Linux.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2005 11:06 PM
11-20-2005 11:06 PM
Re: time server ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2005 04:24 AM
11-21-2005 04:24 AM
Re: time server ?
http://www.siliconvalleyccie.com/linux-hn/ntp.htm
http://www.ntp.org
A couple of URLs to get you going.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2005 04:57 AM
11-21-2005 04:57 AM
Re: time server ?
I am just going to read all those tutorials, and i will try to implement.
I'll be back in this thread if i found prblms in the implementations
Thanks
Regards
Maaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2005 06:22 AM
11-29-2005 06:22 AM
Re: time server ?
ntp server ip: 10.0.0.9/8
I have this ntp server, only connected to my lan, and not connected to internet. I want my other servers running rhel 3/4 get/synchronized their time from the 10.0.0.9(ntp server)
On ntp server /etc/ntp.conf
#less /etc/ntp.conf
restrict 127.0.0.1
restrict 10.0.0.0 mask 255.0.0.0 notrust nomodify notrap
server 10.0.0.9
server 127.127.1.0
fudge 127.127.1.0
driftfile /var/lib/ntp/drift
broadcastdelay 0.008
keys /etc/ntp/keys
#service ntpd start
#netstat -nl |grep 123
Proto Recv-Q Send-Q LocalAd ForeignAd Stat
udp 0 0 10.0.0.9:123 0.0.0.0:*
udp 0 0 127.0.0.1:123 0.0.0.0:*
udp 0 0 0.0.0.0:123 0.0.0.0:*
udp 0 0 :::123 :::*
On Client Side
--------------
OS: rhel 4
#less /etc/ntp.conf
restrict default nomodify notrap noquery
restrict 127.0.0.1
restrict 10.0.0.9 mask 255.0.0.0 nomodify notrap noquery
server 127.127.1.0
fudge 127.127.1.0
driftfile /var/lib/ntp/drift
broadcastdelay 0.008
keys /etc/ntp/keys
#service ntpd start
#netstat -nl |grep 123
Proto Recv-Q Send-Q LocalAd ForeignAd Stat
udp 0 0 10.0.0.1:123 0.0.0.0:*
udp 0 0 127.0.0.1:123 0.0.0.0:*
udp 0 0 0.0.0.0:123 0.0.0.0:*
udp 0 0 :::123 :::*
#ntpupdate -u 10.0.0.9
23 Nov 12:47:07 ntpdate[3028]: no server suitable for synchronization found
Plz help
Regards
Maaz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2005 06:35 AM
11-29-2005 06:35 AM
Re: time server ?
server 10.0.0.9
2- You must run ntpdate before starting ntp
ntpupdate -u 10.0.0.9
3- Start the ntp services and verify the status using:
ntpq -p
On the server and the client. See:
http://docs.hp.com/en/B2355-90774/ch04s02.html#chbbcgeb
For a description of the output.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2005 08:40 AM
11-29-2005 08:40 AM
Re: time server ?
I am in CO so I am using timeservers based in
CO.
Here is a URL that will list public time servers you can connect to. Choose your location - best to choose a location that is close by.
http://ntp.isc.org/bin/view/Servers/WebHome
My ntp.conf file
=======================================
restrict default nomodify notrap noquery
# --- OUR TIMESERVERS -----
server tick.usnogps.navy.mil
server tock.usnogps.navy.mil
fudge 127.127.1.0 stratum 10
driftfile /var/lib/ntp/drift
broadcastdelay 0.008
keys /etc/ntp/keys
restrict 202.49.59.6 mask 255.255.255.255 nomodify notrap noquery
restrict 66.115.136.4 mask 255.255.255.255 nomodify notrap noquery
restrict 194.67.106.186 mask 255.255.255.255 nomodify notrap noquery
server ppoq3dc1.quantum.com # 10.50.2.234
restrict 10.50.2.226 mask 255.255.255.255 nomodify notrap noquery