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
07-07-2000 09:27 AM
07-07-2000 09:27 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2000 09:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2000 09:34 AM
07-07-2000 09:34 AM
Re: Time
Brian
<*(((>< er
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2000 10:18 AM
07-07-2000 10:18 AM
Re: Time
under kernel config
and define parameters
but ya have to enter it in the number of min of off GMT
and also set the DST Param as well Yes or No for Daylight Savings Time
I was always told to rebuild the kernel when changing the timezone
is this true?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2000 10:26 AM
07-07-2000 10:26 AM
Re: Time
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2000 10:30 AM
07-08-2000 10:30 AM
Re: Time
The kernel parameters: timezone and dst should always be changed to match your local time. When $TZ is not inherited (special daemons or background processes), then exec calls to time routines will use the kernel parameters to select the time representation. Here is a quick review of time on HP-UX:
Time in Unix is always maintained as UTC or Zulu time. That's what the internal clock maintains. It makes perfect sense since this is the only universally recognized time reference. All other time zones very poor definitions of what is essentially an astronomic definition. Timezones follow political boundaries, not solar references.
And to make things worse, Daylight savings time is completely uncoordinated even in the U.S. and thus, Unix addresses the issue with the (in?)famous /usr/lib/tztab file. The good news is that you can edit it and create any timezone you like with any DST values you'd like, even rules that change from year to year.
Unix is unique in that any user can log in remotely from any location on earth, set the value of $TZ to the local timezone and from then on, all date and time references will be accurate for the local timezone. This includes daylight savings time. The Unix clock *never* skips forward or backward--only the interpretation changes based on the value on $TZ in the environment. This means that a database that uses a date stamp will obtain it's date stamp after being filtered by $TZ and the tztab rules. While the time will seem to jump, it is just the interpretation of Zulu/UTC time in that timezone.
The key is /etc/TIMEZONE where the current value of the tztab entry is kept for the host system. When the system starts, the script:
/etc/rc.config
is run and sources (executes locally) all the scripts in /etc/rc.config.d and also sources /etc/TIMEZONE. This sets all the ENV variables used by the startup scripts. Thus, when a network service such as inetd is started, it inherits the current values listed in /etc/TIMEZONE and so do the child processes of inetd.
One additional note: Some background processes may not inherit a $TZ value (for example, certain daemons, cronjobs, etc) and in this case, the kernel parameters timezone and dst need to be set for the local timezone. This is a less precise method as dst only has 6 formats but at least there will be a known timezone value for the date/time routines in these unique cases.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2000 12:02 PM
07-11-2000 12:02 PM
Re: Time
on bootup that "time syncronization failed", but the system seems to have the
correct time anyway.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2000 12:09 PM
07-11-2000 12:09 PM
Re: Time
Check to see whether you have it enabled to start in /etc/rc.config.d/netdaemons.
If so, it may be incorrectly set up or need redirecting to a working Time Server