=== Setting up MySQL Authentication ===
==== Makin Creating the Database ====As rootIn terminal, create run the "classpath" directoryfollowing command
{{Code|
Code = mkdir /var/lib/guacamole/classpathsudo mysql -u root -pPassword # This is the root user password for MySQL on Amahi;create database guacdb;create user 'guacuser'@'localhost' identified by 'guacDBpass';grant select,insert,update,delete on guacdb.* to 'guacuser'@'localhost';flush privileges;quit
}}