If you found the current time zone is not accurate after checking OS current time zone in Linux, you might like to change it.
Here are steps to set timezone in Linux:
- Login as root.
- Check all valid time zones in Linux and choose one.
- Set correct time zone by command timedatectl.
[root@test ~]# timedatectl set-timezone 'America/Los_Angeles'
[root@test ~]# timedatectl | grep "Time zone"
Time zone: America/Los_Angeles (PDT, -0700)
Done!