0

My Amazon Linux server at EC2 is showing GMT times, instead of BST ones this morning. How do I change the server time so that it is running off BST instead?

Pierre.Vriens
  • 1,159
  • 34
  • 15
  • 19
jamescridland
  • 167
  • 2
  • 10

2 Answers2

1

And here it is.

sudo vi /etc/sysconfig/clock

Edit the zone to "Europe/London" or your own local timezone

sudo tzdata-update

...and then probably restart the webserver etc to properly fix everything.

jamescridland
  • 167
  • 2
  • 10
0

Run the command:

dpkg-reconfigure tzdata

and choose Europe/London

Ashley
  • 528
  • 1
  • 6
  • 14