From 40bdfb57b3928295263bdd7d19e30c4c63487208 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Fri, 6 Mar 2015 13:14:33 -0800 Subject: [PATCH] GUAC-1103: Update README to include PostgresQL. --- extensions/guacamole-auth-jdbc/README | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/extensions/guacamole-auth-jdbc/README b/extensions/guacamole-auth-jdbc/README index d4fa250aa..0fee7bc93 100644 --- a/extensions/guacamole-auth-jdbc/README +++ b/extensions/guacamole-auth-jdbc/README @@ -51,8 +51,8 @@ in the library directory configured in guacamole.properties. created in the target/ subdirectory of the current directory. 4) Extract the .tar.gz file now present in the target/ directory, and - place the .jar files in the extracted lib/ subdirectory in the library - directory specified in guacamole.properties. + place the .jar files from the extracted database-specific subdirectory in + the library directory specified in guacamole.properties. You will likely need to do this as root. @@ -60,10 +60,10 @@ in the library directory configured in guacamole.properties. guacamole.properties, you will need to specify one. The directory is specified using the "lib-directory" property. -5) Set up your MySQL database to authenticate Guacamole users +5) Set up your database to authenticate Guacamole users A schema file is provided in the schema directory for creating - the guacamole authentication tables in your MySQL database. + the guacamole authentication tables in your database of choice. Additionally, a script is provided to create a default admin user with username 'guacadmin' and password 'guacadmin'. This user can @@ -90,6 +90,17 @@ in the library directory configured in guacamole.properties. mysql-disallow-simultaneous-connections: true + For PostgreSQL, the properties are the same, but have different prefixes: + + # Database connection configuration + postgresql-hostname: database.host.name + postgresql-port: 5432 + postgresql-database: guacamole.database.name + postgresql-username: user + postgresql-password: pass + + postgresql-disallow-simultaneous-connections: true + ------------------------------------------------------------ Reporting problems