How to set the time zone in Amazon EC2?

后端 未结 11 1396
迷失自我
迷失自我 2020-12-22 19:33

I want to change the time zone set in my Amazon EC2 instance running Ubuntu Linux to local time?

My Question

How to change the time zone in

11条回答
  •  生来不讨喜
    2020-12-22 19:59

    None of the above steps worked for me, so thought of writing this new answer here

    # Delete any existing localtime link
    sudo rm /etc/localtime
    # Update time clock file with ZONE property
    sudo vi /etc/sysconfig/clock
    #Update the ZONE property to what you want say
    ZONE="America/Los_Angeles"
    sudo ln -sf /usr/share/zoneinfo/America/Los_Angeles /etc/localtime
    sudo reboot
    

提交回复
热议问题