1
0
mirror of https://git.koehlerweb.org/frodovdr/guac-install synced 2024-11-14 22:47:14 +01:00

Fixed localhost

This commit is contained in:
Chase Wright 2017-02-17 14:22:48 -06:00 committed by GitHub
parent 0cb80f82ca
commit 02f6f18e9c

View File

@ -77,8 +77,8 @@ service tomcat8 restart
# SQL Code
SQLCODE="
create database guacamole_db;
create user 'guacamole_user'@'%' identified by \"$guacdbuserpassword\";
GRANT SELECT,INSERT,UPDATE,DELETE ON guacamole_db.* TO 'guacamole_user'@'%';
create user 'guacamole_user'@'localhost' identified by \"$guacdbuserpassword\";
GRANT SELECT,INSERT,UPDATE,DELETE ON guacamole_db.* TO 'guacamole_user'@'localhost';
flush privileges;"
# Execute SQL Code