How to set the time zone in Amazon EC2?

后端 未结 11 1438
迷失自我
迷失自我 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:53

    Another way of changing the time (This was done on an Amazon EC2 Linux instance)

    Remove your localtime file

    sudo rm /etc/localtime
    

    Change Directory to ZoneInfo

    cd /usr/share/zoneinfo
    

    This folder contains all of the timezone information. You then just need to softlink to the appropriate zone.

    Create a softlink to /etc/localtime

    sudo ln -s /usr/share/zoneinfo/GB /etc/localtime
    

    That will change your server timezone to GB

提交回复
热议问题