Installing PostgreSQL for Guacamole Authentication
Instructions for installing PostgreSQL in Guacamole for Authentication
$ sudo yum install postgresql-server$ sudo postgresql-setup initdb$ sudo systemctl start postgresql
$ sudo systemctl enable postgresqlConfiguring PostgreSQL to accept password authentication locally
host all all 127.0.0.1/32 ident
host all all ::1/128 identhost all all 127.0.0.1/32 md5
host all all ::1/128 md5$ sudo systemctl restart postgresqlPointing Guacamole at the new PostgreSQL instance
Last updated
Was this helpful?

