2017-07-20 19:46:08 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-08-22 04:54:27 +02:00
|
|
|
# Version numbers of Guacamole and MySQL Connector/J to download
|
2017-08-01 15:12:56 +02:00
|
|
|
VERSION="0.9.13"
|
2017-11-11 17:04:42 +01:00
|
|
|
MCJVERSION="5.1.44"
|
2017-07-20 19:46:08 +02:00
|
|
|
|
2017-08-02 13:24:36 +02:00
|
|
|
# Update apt so we can search apt-cache for newest tomcat version supported
|
2017-08-22 04:46:45 +02:00
|
|
|
apt update
|
2017-08-02 13:24:36 +02:00
|
|
|
|
2017-10-13 17:01:51 +02:00
|
|
|
# tomcat8 seems to be broken, tomcat7 and tomcat6 should work
|
|
|
|
if [ $(apt-cache search "^tomcat7$" | wc -l) -gt 0 ]; then
|
2017-08-02 13:24:36 +02:00
|
|
|
TOMCAT="tomcat7"
|
|
|
|
else
|
|
|
|
TOMCAT="tomcat6"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If you want to force a specific tomcat install and not go with the newest just set it here and uncomment:
|
|
|
|
#TOMCAT=""
|
|
|
|
|
2017-11-29 21:50:18 +01:00
|
|
|
# Get MySQL root password and Guacamole User password
|
|
|
|
echo
|
|
|
|
while true
|
|
|
|
do
|
|
|
|
read -s -p "Enter a MySQL ROOT Password: " mysqlrootpassword
|
|
|
|
echo
|
|
|
|
read -s -p "Confirm MySQL ROOT Password: " password2
|
|
|
|
echo
|
|
|
|
[ "$mysqlrootpassword" = "$password2" ] && break
|
|
|
|
echo "Passwords don't match. Please try again."
|
|
|
|
echo
|
|
|
|
done
|
2017-08-03 13:31:57 +02:00
|
|
|
echo
|
2017-11-29 21:50:18 +01:00
|
|
|
while true
|
|
|
|
do
|
|
|
|
read -s -p "Enter a Guacamole User Database Password: " guacdbuserpassword
|
|
|
|
echo
|
|
|
|
read -s -p "Confirm Guacamole User Database Password: " password2
|
|
|
|
echo
|
|
|
|
[ "$guacdbuserpassword" = "$password2" ] && break
|
|
|
|
echo "Passwords don't match. Please try again."
|
|
|
|
echo
|
|
|
|
done
|
|
|
|
echo
|
|
|
|
|
2017-07-20 19:46:08 +02:00
|
|
|
debconf-set-selections <<< "mysql-server mysql-server/root_password password $mysqlrootpassword"
|
|
|
|
debconf-set-selections <<< "mysql-server mysql-server/root_password_again password $mysqlrootpassword"
|
|
|
|
|
2017-07-29 21:33:15 +02:00
|
|
|
# Ubuntu and Debian have different names of the libjpeg-turbo library for some reason...
|
2017-10-13 17:01:51 +02:00
|
|
|
source /etc/lsb-release
|
|
|
|
|
|
|
|
if [ $DISTRIB_ID == "Ubuntu" ]
|
2017-07-29 21:33:15 +02:00
|
|
|
then
|
|
|
|
JPEGTURBO="libjpeg-turbo8-dev"
|
|
|
|
else
|
|
|
|
JPEGTURBO="libjpeg62-turbo-dev"
|
|
|
|
fi
|
|
|
|
|
2017-09-20 16:44:39 +02:00
|
|
|
# Ubuntu 16.10 has a different name for libpng12-dev for some reason...
|
2017-10-13 17:01:51 +02:00
|
|
|
if [ $DISTRIB_RELEASE == "16.10" ]
|
2017-09-20 16:44:39 +02:00
|
|
|
then
|
|
|
|
LIBPNG="libpng-dev"
|
|
|
|
else
|
|
|
|
LIBPNG="libpng12-dev"
|
|
|
|
fi
|
|
|
|
|
2017-08-22 04:54:27 +02:00
|
|
|
# Install features
|
2017-09-20 16:44:39 +02:00
|
|
|
apt -y install build-essential libcairo2-dev ${JPEGTURBO} ${LIBPNG} libossp-uuid-dev libavcodec-dev libavutil-dev \
|
2017-07-20 19:46:08 +02:00
|
|
|
libswscale-dev libfreerdp-dev libpango1.0-dev libssh2-1-dev libtelnet-dev libvncserver-dev libpulse-dev libssl-dev \
|
2017-12-01 18:31:45 +01:00
|
|
|
libvorbis-dev libwebp-dev mysql-server mysql-client mysql-common mysql-utilities ${TOMCAT} freerdp ghostscript wget dpkg-dev
|
2017-07-20 19:46:08 +02:00
|
|
|
|
2017-08-22 04:54:27 +02:00
|
|
|
# If apt fails to run completely the rest of this isn't going to work...
|
2017-08-02 13:24:36 +02:00
|
|
|
if [ $? != 0 ]; then
|
2017-08-22 04:46:45 +02:00
|
|
|
echo "apt failed to install all required dependencies"
|
2017-07-20 19:46:08 +02:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2017-08-02 13:24:36 +02:00
|
|
|
# Add GUACAMOLE_HOME to $TOMCAT ENV
|
|
|
|
echo "" >> /etc/default/${TOMCAT}
|
2017-08-22 04:46:45 +02:00
|
|
|
echo "# GUACAMOLE ENV VARIABLE" >> /etc/default/${TOMCAT}
|
2017-08-02 13:24:36 +02:00
|
|
|
echo "GUACAMOLE_HOME=/etc/guacamole" >> /etc/default/${TOMCAT}
|
2017-07-20 19:46:08 +02:00
|
|
|
|
2017-11-11 17:03:42 +01:00
|
|
|
# Set SERVER to be the preferred download server from the Apache CDN
|
2017-12-01 18:17:13 +01:00
|
|
|
SERVER="http://apache.org/dyn/closer.cgi?action=download&filename=guacamole/${VERSION}-incubating"
|
2017-11-11 17:03:42 +01:00
|
|
|
|
2017-11-29 21:50:18 +01:00
|
|
|
# Download Guacamole Server
|
2017-12-01 18:17:13 +01:00
|
|
|
wget -O guacamole-server-${VERSION}-incubating.tar.gz ${SERVER}/source/guacamole-server-${VERSION}-incubating.tar.gz
|
2017-11-29 21:50:18 +01:00
|
|
|
if [ ! -f ./guacamole-server-${VERSION}-incubating.tar.gz ]; then
|
|
|
|
echo "Failed to download guacamole-server-${VERSION}-incubating.tar.gz"
|
2017-12-01 18:17:13 +01:00
|
|
|
echo "${SERVER}/source/guacamole-server-${VERSION}-incubating.tar.gz"
|
2017-11-29 21:50:18 +01:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Download Guacamole Client
|
2017-12-01 18:17:13 +01:00
|
|
|
wget -O guacamole-${VERSION}-incubating.war ${SERVER}/binary/guacamole-${VERSION}-incubating.war
|
2017-11-29 21:50:18 +01:00
|
|
|
if [ ! -f ./guacamole-${VERSION}-incubating.war ]; then
|
|
|
|
echo "Failed to download guacamole-${VERSION}-incubating.war"
|
2017-12-01 18:17:13 +01:00
|
|
|
echo "${SERVER}/binary/guacamole-${VERSION}-incubating.war"
|
2017-11-29 21:50:18 +01:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Download Guacamole authentication extensions
|
2017-12-01 18:17:13 +01:00
|
|
|
wget -O guacamole-auth-jdbc-${VERSION}-incubating.tar.gz ${SERVER}/binary/guacamole-auth-jdbc-${VERSION}-incubating.tar.gz
|
2017-11-29 21:50:18 +01:00
|
|
|
if [ ! -f ./guacamole-auth-jdbc-${VERSION}-incubating.tar.gz ]; then
|
|
|
|
echo "Failed to download guacamole-auth-jdbc-${VERSION}-incubating.tar.gz"
|
2017-12-01 18:17:13 +01:00
|
|
|
echo "${SERVER}/binary/guacamole-auth-jdbc-${VERSION}-incubating.tar.gz"
|
2017-11-29 21:50:18 +01:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Download MySQL Connector-J
|
2017-12-01 18:17:13 +01:00
|
|
|
wget -O mysql-connector-java-${MCJVERSION}.tar.gz https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-${MCJVERSION}.tar.gz
|
2017-11-29 21:50:18 +01:00
|
|
|
if [ ! -f ./mysql-connector-java-${MCJVERSION}.tar.gz ]; then
|
|
|
|
echo "Failed to download guacamole-server-${VERSION}-incubating.tar.gz"
|
2017-11-29 21:54:26 +01:00
|
|
|
echo "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-${MCJVERSION}.tar.gz"
|
2017-11-29 21:50:18 +01:00
|
|
|
exit
|
|
|
|
fi
|
2017-07-20 19:46:08 +02:00
|
|
|
|
2017-08-22 04:54:27 +02:00
|
|
|
# Extract Guacamole files
|
2017-07-20 19:46:08 +02:00
|
|
|
tar -xzf guacamole-server-${VERSION}-incubating.tar.gz
|
|
|
|
tar -xzf guacamole-auth-jdbc-${VERSION}-incubating.tar.gz
|
2017-07-22 00:49:40 +02:00
|
|
|
tar -xzf mysql-connector-java-${MCJVERSION}.tar.gz
|
2017-07-20 19:46:08 +02:00
|
|
|
|
2017-08-22 04:54:27 +02:00
|
|
|
# Make directories
|
2017-08-22 04:46:45 +02:00
|
|
|
mkdir -p /etc/guacamole/lib
|
|
|
|
mkdir -p /etc/guacamole/extensions
|
2017-07-20 19:46:08 +02:00
|
|
|
|
2017-08-22 04:46:45 +02:00
|
|
|
# Install guacd
|
2017-07-20 19:46:08 +02:00
|
|
|
cd guacamole-server-${VERSION}-incubating
|
|
|
|
./configure --with-init-dir=/etc/init.d
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
ldconfig
|
|
|
|
systemctl enable guacd
|
|
|
|
cd ..
|
|
|
|
|
2017-11-11 17:03:42 +01:00
|
|
|
# Get build-folder
|
|
|
|
BUILD_FOLDER=$(dpkg-architecture -qDEB_BUILD_GNU_TYPE)
|
|
|
|
|
2017-07-20 19:46:08 +02:00
|
|
|
# Move files to correct locations
|
|
|
|
mv guacamole-${VERSION}-incubating.war /etc/guacamole/guacamole.war
|
2017-08-02 13:24:36 +02:00
|
|
|
ln -s /etc/guacamole/guacamole.war /var/lib/${TOMCAT}/webapps/
|
2017-08-03 13:36:14 +02:00
|
|
|
ln -s /usr/local/lib/freerdp/guac*.so /usr/lib/${BUILD_FOLDER}/freerdp/
|
2017-07-22 00:49:40 +02:00
|
|
|
cp mysql-connector-java-${MCJVERSION}/mysql-connector-java-${MCJVERSION}-bin.jar /etc/guacamole/lib/
|
2017-07-20 19:46:08 +02:00
|
|
|
cp guacamole-auth-jdbc-${VERSION}-incubating/mysql/guacamole-auth-jdbc-mysql-${VERSION}-incubating.jar /etc/guacamole/extensions/
|
|
|
|
|
|
|
|
# Configure guacamole.properties
|
|
|
|
echo "mysql-hostname: localhost" >> /etc/guacamole/guacamole.properties
|
|
|
|
echo "mysql-port: 3306" >> /etc/guacamole/guacamole.properties
|
|
|
|
echo "mysql-database: guacamole_db" >> /etc/guacamole/guacamole.properties
|
|
|
|
echo "mysql-username: guacamole_user" >> /etc/guacamole/guacamole.properties
|
|
|
|
echo "mysql-password: $guacdbuserpassword" >> /etc/guacamole/guacamole.properties
|
|
|
|
|
|
|
|
# restart tomcat
|
2017-08-02 13:24:36 +02:00
|
|
|
service ${TOMCAT} restart
|
2017-07-20 19:46:08 +02:00
|
|
|
|
|
|
|
# Create guacamole_db and grant guacamole_user permissions to it
|
|
|
|
|
2017-08-22 04:54:27 +02:00
|
|
|
# SQL code
|
2017-07-20 19:46:08 +02:00
|
|
|
SQLCODE="
|
|
|
|
create database guacamole_db;
|
|
|
|
create user 'guacamole_user'@'localhost' identified by \"$guacdbuserpassword\";
|
|
|
|
GRANT SELECT,INSERT,UPDATE,DELETE ON guacamole_db.* TO 'guacamole_user'@'localhost';
|
|
|
|
flush privileges;"
|
|
|
|
|
2017-08-22 04:54:27 +02:00
|
|
|
# Execute SQL code
|
2017-07-20 19:46:08 +02:00
|
|
|
echo $SQLCODE | mysql -u root -p$mysqlrootpassword
|
|
|
|
|
2017-08-22 04:54:27 +02:00
|
|
|
# Add Guacamole schema to newly created database
|
2017-07-20 19:46:08 +02:00
|
|
|
cat guacamole-auth-jdbc-${VERSION}-incubating/mysql/schema/*.sql | mysql -u root -p$mysqlrootpassword guacamole_db
|
|
|
|
|
|
|
|
# Cleanup
|
|
|
|
rm -rf guacamole-*
|
2017-07-22 00:49:40 +02:00
|
|
|
rm -rf mysql-connector-java-${MCJVERSION}*
|
2017-11-12 17:57:04 +01:00
|
|
|
|
|
|
|
echo -e "Installation Complete\nhttp://localhost:8080/guacamole/\nDefault login guacadmin:guacadmin\nBe sure to change the password."
|