Using KCM with a PostgreSQL Database
Instructions for integrating Keeper Connection Manager and Guacamole with PostgreSQL
Creating and initializing the Guacamole database
CREATE DATABASE guacamole_db;Filename
Description
$ cat /opt/keeper/share/guacamole-auth-jdbc-postgresql/schema/*.sql | psql -d guacamole_db -f -$ psql -d guacamole_db -f /opt/keeper/share/guacamole-auth-jdbc-postgresql/schema/001-create-schema.sql
$ psql -d guacamole_db -f /opt/keeper/share/guacamole-auth-jdbc-postgresql/schema/002-create-admin-user.sqlConnecting Guacamole to PostgreSQL
CREATE USER guacamole_user WITH PASSWORD 'some_password';
GRANT SELECT,INSERT,UPDATE,DELETE ON ALL TABLES IN SCHEMA public TO guacamole_user;
GRANT SELECT,USAGE ON ALL SEQUENCES IN SCHEMA public TO guacamole_user;Advanced Linux Install Method
Advanced Linux Install Method
Username:
guacadmin
PreviousInstalling MariaDB for Guacamole AuthenticationNextInstalling PostgreSQL for Guacamole Authentication
Last updated
Was this helpful?

