Question & Answer
Question
Answer
Important notice regarding the availability of TZ updates: |
---|
IANA hosts the Time Zone Database project, and is responsible for distributing the data. However, the curation of the time zone data is performed by a community of volunteers, convened through an IANA discussion forum. Required updates are made to the database, and a new release is delivered by the group.
Reference:
Like many software vendors, AIX must retrieve the data, build the new time zones, and integrate the changes in to the next AIX release. The IANA recommends that policymakers provide at least a year advance notice of time zone policy changes, to allow time for IANA and vendor testing, integration, and release.
Sometimes, policymakers change time zone rules with a very short notification period. IBM AIX development strives to expedite the IANA release updates, and provide interim fixes. While ifixes are not generally exposed to full regression or system testing, they are still tested for functionality and some regression, and might not be available before the affected date. If expedited updates are required, users are advised to implement documented workarounds.
|
Affected Time Zones
|
Download Directory | ifix and workaround README | Time Zone Database Version and News |
---|---|---|---|
Africa/El_Aaiun
Africa/Cairo
Africa/Casablanca
America/Godthab
America/Nuuk
America/Yellowknife
Asia/Gaza
Asia/Hebron
Egypt
Europe/Kirov
Europe/Volgograd
|
ifix Directory | README | 2023c |
Combined fixes, from 2022a - 2022g
asia Asia/Amman:2022e 2022f
asia Asia/Damascus:2022e 2022f
asia Asia/Gaza:2022a 2022d
asia Asia/Tehran:2022c
australasia Pacific/Fiji:2022f
europe America/Nuuk:2022g
europe Europe/Kiev:2022a
europe Europe/Simferopol:2022c
northamerica America/Bahia_Banderas:2022e 2022f
northamerica America/Chihuahua:2022e 2022f
northamerica America/Ciudad_Juarez:2022g
northamerica America/Hermosillo:2022e
northamerica America/Matamoros:2022e
northamerica America/Mazatlan:2022e 2022f
northamerica America/Merida:2022f
northamerica America/Mexico_City:2022e 2022f
northamerica America/Monterrey:2022f
northamerica America/Nipigon:2022f
northamerica America/Ojinaga:2022e 2022f
northamerica America/Rainy_River:2022f
northamerica America/Thunder_Bay:2022f
northamerica America/Tijuana:2022e
southamerica America/Santiago:2022a 2022c
|
ifix Directory | README | 2022g |
- AIX Time Zone: Using the POSIX time zone format
Note: In 2016, changes in time zone data files introduced changes for zic and zdump. The following steps apply to the following, and later, AIX versions:
7200-01-00-1642
7100-04-03-1642
** If you have older versions of AIX, you need to download an older IANA tzdata file, then make manual updates to the source to reflect the changes for your time zone. This customization is out of scope for AIX Support.
|
- Syria & Jordan Ditch Clock Changes
1) Download the latest tzdata from IANA at https://www.iana.org/time-zones
In this example, we used 2022e to pick up the Oct 28 2022 Amman, Jordan DST time change.
Since the only file required for this change is the asia content, we only download the single file:
2) Prepare the directory
# mkdir -p /tmp/tztmp
# cd /tmp/tztmp
3) Examine the existing TZ information
# zdump -v Asia/Amman | egrep "2022" | tee before.zdump
Asia/Amman Thu Feb 24 21:59:59 2022 UT = Thu Feb 24 23:59:59 2022 EET isdst=0 gmtoff=7200 Asia/Amman Thu Feb 24 22:00:00 2022 UT = Fri Feb 25 01:00:00 2022 EEST isdst=1 gmtoff=10800 Asia/Amman Thu Oct 27 21:59:59 2022 UT = Fri Oct 28 00:59:59 2022 EEST isdst=1 gmtoff=10800 Asia/Amman Thu Oct 27 22:00:00 2022 UT = Fri Oct 28 00:00:00 2022 EET isdst=0 gmtoff=7200 4) Copy the downloaded file to the current directory, or use the AIX Toolbox for Open Source wget or curl command:
# wget http://data.iana.org/time-zones/tzdb-2022e/asia
# curl http://data.iana.org/time-zones/tzdb-2022e/asia -so asia 5) Compile the data
# zic -d compiled asia
NOTE: Warning messages about POSIX standards are printed.
For example,
warning: "asia", line 86: %s (%s)time zone abbreviation differs from POSIX standard (+04)
Ignore these messages. The time zone information is correct. The warning is based on POSIX.1-1988. However, the restriction was removed in POSIX.1-2001. Therefore, the warning can be ignored.
6) Replace the current data # mv /usr/share/lib/zoneinfo/Asia/Amman /usr/share/lib/zoneinfo/Asia/Amman.old
# cp compiled/Asia/Amman /usr/share/lib/zoneinfo/Asia/Amman # chmod 644 /usr/share/lib/zoneinfo/Asia/Amman # chown bin.bin /usr/share/lib/zoneinfo/Asia/Amman 7) Check the new data # zdump -v Asia/Amman | egrep "2022" | tee after.zdump
Asia/Amman Thu Feb 24 21:59:59 2022 UT = Thu Feb 24 23:59:59 2022 EET isdst=0 gmtoff=7200
Asia/Amman Thu Feb 24 22:00:00 2022 UT = Fri Feb 25 01:00:00 2022 EEST isdst=1 gmtoff=10800 Asia/Amman Thu Oct 27 21:59:59 2022 UT = Fri Oct 28 00:59:59 2022 EEST isdst=1 gmtoff=10800 Asia/Amman Thu Oct 27 22:00:00 2022 UT = Fri Oct 28 01:00:00 2022 +03 isdst=0 gmtoff=10800 8) Check the current date
# TZ=Asia/Amman
# date
Wed Oct 19 15:36:39 EEST 2022 # zdump Asia/Amman Asia/Amman Wed Oct 19 15:36:51 2022 EEST 9) Change the date to Oct 28
# date 1028144222
Fri Oct 28 14:42:06 +03 2022 # zdump Asia/Amman
Asia/Amman Fri Oct 28 14:42:08 2022 +03 10) Confirm the difference
# diff before.zdump after.zdump
< Asia/Amman Thu Oct 27 22:00:00 2022 UT = Fri Oct 28 00:00:00 2022 EET isdst=0 gmtoff=7200
--- > Asia/Amman Thu Oct 27 22:00:00 2022 UT = Fri Oct 28 01:00:00 2022 +03 isdst=0 gmtoff=10800 >
|
- https://www.ibm.com/docs/en/aix/7.3?topic=c-cron-daemon
SUPPORT |
---|
If you require more assistance, use the following step-by-step instructions to contact IBM to open a case for software with an active and valid support contract. 1. Document (or collect screen captures of) all symptoms, errors, and messages related to your issue. 2. Capture any logs or data relevant to the situation. 3. Contact IBM to open a case: -For electronic support, see the IBM Support Community: 4. Provide a clear, concise description of the issue. 5. If the system is accessible, collect a system snap, and upload all of the details and data for your case. |
Related Information
Was this topic helpful?
Document Information
Modified date:
24 May 2023
UID
ibm16554212