You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notes on setting up guacamole database
docker exec -it mysql /bin/bash
mysql -u root -p
CREATE DATABASE ;
GRANT ALL PRIVILEGES ON .* TO ''@'%';
FLUSH PRIVILEGES;
EXIT;