Lab Information
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 Africa/Abidjan.
Synchronize the timezone settings to match the local datacenter's timezone (Africa/Abidjan).
Lab Solutions
π§ Part 1: Lab Step-by-Step Guidelines
πΉ Step 1: Log in to Jump Host
ssh thor@jump_host.stratos.xfusioncorp.com
Password:
mjolnir123
π Perform the following steps on ALL three App Servers
πΉ Step 2: SSH into App Server
App Server 1
ssh tony@stapp01.stratos.xfusioncorp.com
Ir0nM@n
App Server 2
ssh steve@stapp02.stratos.xfusioncorp.com
Am3ric@
App Server 3
ssh banner@stapp03.stratos.xfusioncorp.com
BigGr33n
πΉ Step 3: Switch to root
sudo -i
πΉ Step 4: Set timezone
timedatectl set-timezone Africa/Abidjan
πΉ Step 5: Verify timezone
timedatectl
You must see:
Local time: Sat 2026-02-28 13:47:36 GMT
Universal time: Sat 2026-02-28 13:47:36 UTC
RTC time: n/a
Time zone: Africa/Abidjan (GMT, +0000)
System clock synchronized: yes
NTP service: n/a
RTC in local TZ: no
π Repeat Steps 2β5 on all three App Servers
β
Final Checklist
β Completed on stapp01
β Completed on stapp02
β Completed on stapp03
β Timezone set to Africa/Abidjan
β Verified using timedatectl
β No reboot performed
π§ Part 2: Simple Step-by-Step Explanation (Beginner Friendly)
πΉ What is the issue?
The servers have inconsistent timezone settings.
The datacenter timezone is:
Africa/Abidjan
All app servers must match it.
πΉ What does timedatectl set-timezone do?
It updates the systemβs timezone configuration immediately.
It modifies the systemd time configuration without reboot.
πΉ Why no reboot?
timedatectl applies changes instantly.
Rebooting is unnecessary and not allowed per lab instructions.
πΉ Why is timezone important?
Incorrect timezone can cause:
Incorrect logs
Broken cron schedules
Authentication timestamp issues
Monitoring inconsistencies
Keeping servers aligned ensures consistent operations.
Top comments (0)