Guacamole per Skript unter Ubuntu installieren
Go to file
breakintheweb a43a3c8327 decrease verbosity and increase readability (#44)
This change has the following:
* Lowered verbosity for downloads (just progress bars)
* Colored output for each step of build 
* build process output is redirected to log
2018-08-29 08:18:29 -05:00
README.md Add link to HTTPS 2018-04-20 08:34:20 -05:00
docker-install.sh docker-ce 2018-04-01 10:00:47 -05:00
guac-install-server.sh Account for gcc < 6 (#40) 2018-03-12 17:15:26 -05:00
guac-install.sh decrease verbosity and increase readability (#44) 2018-08-29 08:18:29 -05:00
guac-upgrade.sh Account for gcc < 6 (#40) 2018-03-12 17:15:26 -05:00

README.md

guac-install

Script for installing Guacamole 0.9.14 on Ubuntu 16.04 or newer with MySQL. It should also work on pure Debian >= 7 but I have not tested. Feel free to provide freeback!

Run script, enter MySQL Root Password and Guacamole User password. Guacamole User is used to connect to the Guacamole Database.

The script attempts to install tomcat8 if the available version is 8.5.x or newer, if tomcat8 is only 8.0.x it will fall back to tomcat7. If you want to manually specify a tomcat version there's a commented out line you can modify at line #73. Have at it.

If you're looking to also have NGINX / Let's Encrypto / HTTPS click HERE

How to Run:

Download file directly from here:

wget https://raw.githubusercontent.com/MysticRyuujin/guac-install/master/guac-install.sh

Make it executable:

chmod +x guac-install.sh

Run it as root:

Interactive (asks for passwords):

./guac-install.sh

Non-Interactive (passwords provided via cli):

./guac-install.sh --mysqlpwd password --guacpwd password

OR

./guac-install.sh -m password -g password

Once installation is done you can access guacamole by browsing to: http://<host_or_ip>:8080/guacamole/ The default credentials are guacadmin as both username and password. Please change them or disable guacadmin after install!

guac-upgrade

Script for upgrading currently installed Guacamole instance (previously installed via this script/guide)

If looks for the tomcat folder in /etc/ (E.G. /etc/tomcat7 or /etc/tomcat8) hopefully that works to identify the correct tomcat version/path 😄 I'm open to suggestions/pull requests for a cleaner method.

How to Run:

Download file directly from here:

wget https://raw.githubusercontent.com/MysticRyuujin/guac-install/master/guac-upgrade.sh

Make it executable:

chmod +x guac-upgrade.sh

Run it as root:

Interactive (asks for passwords):

./guac-upgrade.sh

Non-Interactive (password provided via cli):

./guac-upgrade.sh --mysqlpwd password