- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- system time is faster than real time
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
09-18-2007 08:00 PM
09-18-2007 08:00 PM
Can anyone tell me what is the cause ?
Thanks
Rambo
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2007 08:58 PM
09-18-2007 08:58 PM
Re: system time is faster than real time
seems like your superdome is configured for a 50 Hz electric power supply - and you have 60 Hz?
So the faster oscillation let your clock run faster ...
Volkmar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2007 12:42 AM
09-19-2007 12:42 AM
SolutionIt is normal for the clock to drift a few seconds per day, even a minute or so. That's why *ALL* data centers should be running NTP with a central time server.
Now if you are seeing an hour difference, DO NOT change the clock. Instead, look at the HP-UX system time with date -u. That is UTC (GMT or Zulu) time which you can verify with:
http://tycho.usno.navy.mil/cgi-bin/timer.pl
You set the correct time for HP-UX using date -u because there are no timezone calculations for UTC time. Once that is correct, when you type the date command, look at the timezone tag at the end. HP-UX calculates the time based on the variable $TZ and this can be set anywhere (/etc/profile, .profile, manually, etc). So don't change the time if date -u is correct for UTC time. Instead, change your TZ variable. The default value for everyone is set in the file: /etc/TIMEZONE
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2007 01:19 PM
09-24-2007 01:19 PM
Re: system time is faster than real time
Thanks & B.R
Rambo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2007 01:46 PM
09-24-2007 01:46 PM
Re: system time is faster than real time
# The NTP peer group...
#
server server1 version 3
server server2 version 3
server server3 version 3
#
# Allow server to sync to its own clock in case of network outage.
# Clock is configured as a stratum-9 clock
server 127.127.1.0
fudge 127.127.1.0 stratum 10 # show poor quality
driftfile /etc/ntp.drift
server(server1) side
peer server2
peer server3
#
# Allow server to sync to its own clock in case of network outage.
# Clock is configured as a stratum-9 clock
server 127.127.1.1
#fudge 127.127.1.1 stratum 10 # show poor quality
fudge 127.127.1.1 stratum 5
driftfile /etc/ntp.drift
that may help..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2007 02:22 PM
09-27-2007 02:22 PM
Re: system time is faster than real time
what is the meaning ?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2007 02:38 PM
09-27-2007 02:38 PM
Re: system time is faster than real time
Basically, this helps xntpd understand how often it needs to check the time. (If your clock is off a little, it will help xntpd check more often to keep you closer to your clock.
Hope it helps
John