Updating Your Server's Timezone
Ensuring your server has the correct timezone is important for logs and scheduled tasks.
Check the Current Timezone
timedatectl
CopyList Available Timezones
timedatectl list-timezones
CopyUse the arrow keys, or `grep`, to find your desired timezone, for example `timedatectl list-timezones | grep "New_York"`.
Set a New Timezone
Use the `set-timezone` command with the name you found from the list.
sudo timedatectl set-timezone America/New_York
CopyVerify the change by running `timedatectl` again.