Operating System - HP-UX
1751963 Members
4973 Online
108783 Solutions
New Discussion юеВ

Effect of Correcting Time Downward on Running OS

 
SOLVED
Go to solution
Alzhy
Honored Contributor

Effect of Correcting Time Downward on Running OS

I know this is really a common sense thingy and has all "it depends" marks all over but just want to ask anyway.

We have a gang of servers that inadvertently dropped off their NTP servers (whis IP/DNS changed). All are now on average ~20 minutes ahead of actual time.

If I adjust it "online" -- with DBs, mid-tier apps and front-end apps (web tier) running -- will there be serious repercussions? Maybe dangeorus with financial systems -- right?
Hakuna Matata.
6 REPLIES 6
Ismail Azad
Esteemed Contributor
Solution

Re: Effect of Correcting Time Downward on Running OS

Hi,


This will create a problem for :-

1) Authentication mechanisms on NFS
2) Incremental backups

{what i can think of off the top of my head}

If you can risk these criteria go ahead bringing time downward, however, this can cause disaster to "time sensitive" applications.

Regards
Ismail Azad
Read, read and read... Then read again until you read "between the lines".....
Alzhy
Honored Contributor

Re: Effect of Correcting Time Downward on Running OS

Ysmael,

Thanks... will check with client. I simply missed the apt terminlogy "time-sensitive"...
Hakuna Matata.
Pete Randall
Outstanding Contributor

Re: Effect of Correcting Time Downward on Running OS

And database logs can get really messed up which can cause huge problems if you have to roll back a transaction or have to recover the DB.


Pete

Pete

Re: Effect of Correcting Time Downward on Running OS

But you shouldn't have to change the time all in one go...

both date(1) and ntpdate(1m) offer capabilities to "slew" the clock adjustment by shortening/lengthening a second for however long it takes to get the clock back in sync (see the adjtime(2) system call)

Its all in the man pages...

HTH

Duncan

I am an HPE Employee
Accept or Kudo
Bill Hassell
Honored Contributor

Re: Effect of Correcting Time Downward on Running OS

Whiule NTP can slew the time between seconds, it can only correct for about 12 minutes of mismatch. For a 20 minute correction, the clock cannot be changed enough to complete the task in 24 hours. NTP guarantees that there will always be 86400 seconds per day.

The best way to fix this is to first verify that NTP is now communicating with valid servers (hint ntpq -p and /etc/ntp.conf). If not, fix that first. Then reboot the servers. HP-UX will automatically 'jump' the time and date to the value returned by the NTP server in /etc/rc.config.d/netdaemons. The alternative is to shutdown all applications on one server, then set the date manually and restart the applications. Be careful that $TZ matches your current timezone. The data command will translate what you type into the correct GMT/UTC offset. If $TZ is wrong, then the new time will be wrong.


Bill Hassell, sysadmin
Ismail Azad
Esteemed Contributor

Re: Effect of Correcting Time Downward on Running OS

Hi,

Typical NTP behaviour suggests that a drift of around 1000 seconds would cause the xntpd daemon to die and yes, 20 minutes is more than that and as bill said a reboot would do this for you because ntpdate -b would jump the time the way you would want it to.

Regards
Ismail Azad
Read, read and read... Then read again until you read "between the lines".....