Closed marcvidalim closed 2 years ago
seeing the same thing, were you able to figure it out?
Yes, as I've stated in my initial message, it's required to configure the time_zone in MySQL server
for the lazy (like me) I just added the extra lines in /etc/mysql/my.cnf
[mysqld] default-time-zone='-7:00'
change the number value to correspond to your time zone. yes it breaks (time wise) when DST changes but it at least got everything going for me.
https://github.com/jruby/activerecord-jdbc-adapter/issues/897 notes some items here too.
FYI first solution didn't work for me (i.e. Guacamole running on Debian 10.4 with MariaDB 10.3.22) so after system timezones import I added default_time_zone = Continent/City
line in usual /etc/mysql/my.cnf
file.
Hi there!
Trying to access http://localhost:8080/guacamole doesn't show up the login screen, it shows a generic error message.
I've noticed on the browser inspector an error 500 related to tokens and then I looked through tomcat and the following was found:
Then I realized the install script failed to add the timezone to the MySQL config:
I've fixed it as follows:
I hope this might help someone facing the same issue and to improve the script, which is really great! (:
Thanks a lot!