In the daily standup, it was noted that the timezone settings across the Nautilus Application Servers in the Stratos Datacenter are inconsistent with the local datacenter's timezone, currently set to Atlantic/St_Helena.
- Synchronize the timezone settings on all Nautilus Application Servers to match the local datacenter's timezone (Atlantic/St_Helena).
- Log in to Each App Server:
ssh your_username@app_server_ip
- Check the Current Timezone:
timedatectl
- Set the Timezone to Atlantic/St_Helena:
sudo timedatectl set-timezone Atlantic/St_Helena
- Verify the Timezone Change:
timedatectl
- Confirm the System Time:
date
- Command Explanation:
ssh your_username@app_server_ip: Log in to the app server. timedatectl: Utility to view and set the system's time and date. sudo timedatectl set-timezone Atlantic/St_Helena: Set the system timezone to Atlantic/St_Helena. date: Display the current date and time to confirm the system time reflects the new timezone.