Installing MariaDB for Guacamole Authentication
$ sudo yum install mariadb-server$ sudo systemctl start mariadb
$ sudo systemctl enable mariadbDropping default anonymous users
SELECT Host, User FROM mysql.user;+---------------------+----------------+
| Host | User |
+---------------------+----------------+
| % | guacamole_user |
| 127.0.0.1 | root |
| ::1 | root |
| the.server.hostname | |
| the.server.hostname | root |
| localhost | |
| localhost | root |
+---------------------+----------------+Pointing Guacamole at the new MariaDB instance
Last updated
Was this helpful?

