Page 2 of 2

Re: Unable to open Configuration snapshots

Posted: Wed Mar 05, 2014 8:04 am
by MSPk
I have tried the below steps and chnaged the time zone to Europe/London, but it is still the same...!! :(

Re: Unable to open Configuration snapshots

Posted: Wed Mar 05, 2014 12:37 pm
by abrist
There seems to be a bug in some centos versions. Check to see if localtime is a file or directory:

Code: Select all

ls -la /etc/localtime
file /etc/localtime

Re: Unable to open Configuration snapshots

Posted: Thu Mar 06, 2014 6:13 am
by MSPk
This is the ourput I get...

[root@hostname libexec]# ls -la /etc/localtime
lrwxrwxrwx. 1 root root 20 Feb 5 08:09 /etc/localtime -> /usr/share/zoneinfo/
[root@hostname libexec]# file /etc/localtime
/etc/localtime: symbolic link to `/usr/share/zoneinfo/'

Re: Unable to open Configuration snapshots

Posted: Thu Mar 06, 2014 2:05 pm
by abrist
Yerp, that is the problem. Do the following:

Code: Select all

rm /etc/localtime
(make sure there is no trailing slash!)

Code: Select all

cp /usr/share/zoneinfo/<your country>/<your timezone> /etc/localtime
For example:

Code: Select all

cp /usr/share/zoneinfo/America/Chicago /etc/localtime