Re: Troubles with LDAP on 1.5.5

2025-03-06 Thread Anakien Skywalker
Hello, Please, look higher up in the logs, during the startup of Tomcat (or deployment of the guacamole WAR file) to make sure it's loading the expected extensions, and see if there are any other errors there. The error you are referring to may be related with mysql driver not getting loaded. ср,

Re: Troubles with LDAP on 1.5.5

2025-03-06 Thread Anakien Skywalker
I think it is here: > jdbc:mysql scheme compatibility > > MariaDB Connector/J 3.0 only accepts jdbc:mariadb: as the protocol in > connection strings by default. When both MariaDB Connector/J and the MySQL > drivers are found in the class-path, using jdbc:mariadb: as the protocol > helps to ensure

Re: Troubles with LDAP on 1.5.5

2025-03-06 Thread Jason Bailey
Using that alternative connector did the trick (thank you!). Any idea why that worked while the previous one did not? On 3/6/25 2:21 PM, Anakien Skywalker wrote: Can you try this one: https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-j-$MYSQL_JDBC_VERSION.tar.gz MYSQL_JDBC_VERSI

Re: Troubles with LDAP on 1.5.5

2025-03-06 Thread Anakien Skywalker
Can you try this one: https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-j-$MYSQL_JDBC_VERSION.tar.gz MYSQL_JDBC_VERSION=8.3.0 Remove the rest of drivers and in guacamole config set driver mysql чт, 6 мар. 2025 г., 22:51 Jason Bailey : > This is what I have: > > echo "GUACAMOLE_HOM

Re: Troubles with LDAP on 1.5.5

2025-03-06 Thread Jason Bailey
This is what I have: echo "GUACAMOLE_HOME=/etc/guacamole" >> /etc/default/tomcat9 echo "GUACAMOLE_HOME=/etc/guacamole" >> /etc/profile.d/tomcat9.sh Also... root@guac:/etc/guacamole# ls -l total 20 drwxrwxr-x 2 tomcat tomcat 4096 Mar 5 15:15 extensions -rw-r--r-- 1 tomcat tomcat 2847 Mar 6 1

Re: Troubles with LDAP on 1.5.5

2025-03-06 Thread Anakien Skywalker
Oh yeah, And by the way: Any of the following MySQL-compatible JDBC drivers are supported for connecting Guacamole with MySQL or MariaDB: MySQL Connector/J MariaDB Connector/J Did you install them both? Because you have to install them both. чт, 6 мар. 2025 г., 22:39 Anakien Skywalker : > Hello

Re: Troubles with LDAP on 1.5.5

2025-03-06 Thread Anakien Skywalker
Hello, Did you set GUACAMOLE_HOME env var? The Guacamole extension .jar will ultimately need to be placed within GUACAMOLE_HOME/extensions, while the JDBC driver must be downloaded separately from the database vendor and placed within GUACAMOLE_HOME/lib. Please, check both directories and permissi

Re: Troubles with LDAP on 1.5.5

2025-03-06 Thread Jason Bailey
Okay... LDAP works now. Progress! I still can't get MariaDB/MySQL to work, however. This is what I'm seeing in the logs. 12:09:07.428 [http-nio-8080-exec-1] DEBUG o.a.i.t.jdbc.JdbcTransaction - Opening JDBC Connection 12:09:07.429 [http-nio-8080-exec-1] DEBUG o.a.g.a.j.DynamicallyAuthenticated

Re: Troubles with LDAP on 1.5.5

2025-03-05 Thread Jason Bailey
Did you enable auto creation of accounts in the mysql plugin? Yes. Did you create guacadmin user in mysql? I ran the 000-create-admin-user.sql script against the database and I can see the records present when I view the appropriate database tables. Set extension priority? I have not done so th

Re: Troubles with LDAP on 1.5.5

2025-03-05 Thread Anakien Skywalker
Hello, Just a few things to check: 1. Did you enable auto creation accounts in mysql plugin? https://guacamole.apache.org/doc/gug/jdbc-auth.html#auto-creating-database-users > mysql-auto-create-accounts: true 2. Did you create guacadmin user in mysql? You need to execute the following schema mi

Re: Troubles with LDAP on 1.5.5

2025-03-04 Thread Nick Couchman
On Tue, Mar 4, 2025 at 7:00 PM Jason Bailey wrote: > Replying to my own email here, but I did get debug logging working. I'm > seeing a few extra things now when I try to login: > > DEBUG o.a.g.r.auth.AuthenticationService - Anonymous authentication > attempt from [10.0.0.86, 127.0.0.1] failed. >

Re: Troubles with LDAP on 1.5.5

2025-03-04 Thread Jason Bailey
Replying to my own email here, but I did get debug logging working. I'm seeing a few extra things now when I try to login: DEBUG o.a.g.r.auth.AuthenticationService - Anonymous authentication attempt from [10.0.0.86, 127.0.0.1] failed. DEBUG o.a.g.rest.RESTExceptionMapper - Client request reject

Troubles with LDAP on 1.5.5

2025-03-04 Thread Jason Bailey
Hi all, I'm a long time user of Guacamole and I've been trying to get a second server ready so that I can phase out my old CentOS 7 based server. The new one is running Debian 12 with tomcat9. The Guacamole client (pre-compiled war file) is being reverse proxied through Apache. I statically compil