Hi Nick, I decided to upgrade my guacamole version so puled down the v 1.0.0 (was running 0.9.14 before), I have a RDS as a database and after I got the containers running, I noticed the GUI doesn't come up. docker logs shows this schema error: ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'guacamole.guacamole_entity' doesn't exist### The error may exist in org/apache/guacamole/auth/jdbc/user/UserMapper.xml### The error may involve defaultParameterMap### The error occurred while setting parameters### SQL: SELECT guacamole_user.user_id, guacamole_entity.entity_id, guacamole_entity.name, password_hash, password_salt, password_date, disabled, expired, access_window_start, access_window_end, valid_from, valid_until, timezone, full_name, email_address, organization, organizational_role, MAX(start_date) AS last_active FROM guacamole_user JOIN guacamole_entity ON guacamole_user.entity_id = guacamole_entity.entity_id LEFT JOIN guacamole_user_history ON guacamole_user_history.user_id = guacamole_user.user_id WHERE guacamole_entity.name = ? AND guacamole_entity.type = 'USER' GROUP BY guacamole_user.user_id, guacamole_entity.entity_id; SELECT guacamole_user_attribute.user_id, guacamole_user_attribute.attribute_name, guacamole_user_attribute.attribute_value FROM guacamole_user_attribute JOIN guacamole_user ON guacamole_user.user_id = guacamole_user_attribute.user_id JOIN guacamole_entity ON guacamole_user.entity_id = guacamole_entity.entity_id WHERE guacamole_entity.name = ? AND guacamole_entity.type = 'USER'### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'guacamole.guacamole_entity' doesn't exist
Can you please advise what I did wrong? Thanks On Wednesday, February 13, 2019, 10:59:10 AM EST, Nick Couchman <[email protected]> wrote: On Wed, Feb 13, 2019 at 9:57 AM Tezarin <[email protected]> wrote: > Good morning all, > I have the guacamole docker image which I pulled months ago and now trying > to figure out the version of it and could not find a way to do that. Can > someone ple ae help? > The Guacamole interface has the version listed in the lower-right corner on the login screen. You'll see a little green tag with the version. If you downloaded a few months ago, it is likely 0.9.14. 1.0.0 came out in January. You can see all of the available tags/versions of Docker images here: https://hub.docker.com/r/guacamole/guacamole/tags -Nick
