1
0
mirror of https://git.koehlerweb.org/frodovdr/guac-install synced 2025-04-23 12:53:12 +02:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Chase Wright
6f89f7a1d1
Fix MySQL authentication issues
A silly workaround, but it works.
2021-06-09 07:53:37 -05:00
MysticRyuujin
76e992022a Possible fix for #183 2021-06-07 14:48:33 -05:00
Chase Wright
0816002f0c
Update README.md
Updated per suggestion in #178
2021-05-24 13:11:02 -05:00
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ I've maintained this script for quite a few years now with the help of the other
## NOTE: Ubuntu users having issues with RDP have reported the following fix:
```
sudo add-apt-repository ppa:remmina-ppa-team/freerdp-daily
sudo add-apt-repository ppa:remmina-ppa-team/remmina-next
sudo apt-get update
sudo apt-get install freerdp2-dev freerdp2-x11
```

View File

@ -91,11 +91,11 @@ fi
tar -xzf guacamole-auth-jdbc-${GUACVERSION}.tar.gz
# Start MySQL
docker run --restart=always --detach --name=mysql --env="MYSQL_ROOT_PASSWORD=$mysqlrootpassword" --publish 3306:3306 healthcheck/mysql
docker run --restart=always --detach --name=mysql --env="MYSQL_ROOT_PASSWORD=$mysqlrootpassword" --publish 3306:3306 healthcheck/mysql --default-authentication-plugin=mysql_native_password
# Wait for the MySQL Health Check equal "healthy"
echo "Waiting for MySQL to be healthy"
until [ "`/usr/bin/docker inspect -f {{.State.Health.Status}} mysql`"=="healthy" ]; do
until [ "$(/usr/bin/docker inspect -f {{.State.Health.Status}} mysql)" == "healthy" ]; do
sleep 0.1;
done;