2017-07-20 19:46:08 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-07-22 00:49:40 +02:00
|
|
|
# Version Numbers of Guacamole and MySQL Connection/J to download
|
2017-08-01 15:12:56 +02:00
|
|
|
VERSION="0.9.13"
|
2017-07-24 22:26:06 +02:00
|
|
|
MCJVERSION="5.1.43"
|
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
|
|
|
|
apt-get update
|
|
|
|
|
|
|
|
# tomcat8 is newest, tomcat7 and tomcat6 should work too
|
|
|
|
if [ $(apt-cache search "^tomcat8$" | wc -l) -gt 0 ]; then
|
|
|
|
TOMCAT="tomcat8"
|
|
|
|
elif [ $(apt-cache search "^tomcat7$" | wc -l) -gt 0 ]; then
|
|
|
|
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-07-20 19:46:08 +02:00
|
|
|
# Grab a password for MySQL Root
|
|
|
|
read -s -p "Enter the password that will be used for MySQL Root: " mysqlrootpassword
|
|
|
|
debconf-set-selections <<< "mysql-server mysql-server/root_password password $mysqlrootpassword"
|
|
|
|
debconf-set-selections <<< "mysql-server mysql-server/root_password_again password $mysqlrootpassword"
|
|
|
|
|
|
|
|
# Grab a password for Guacamole Database User Account
|
|
|
|
read -s -p "Enter the password that will be used for the Guacamole database: " guacdbuserpassword
|
|
|
|
|
2017-07-29 21:33:15 +02:00
|
|
|
# Ubuntu and Debian have different names of the libjpeg-turbo library for some reason...
|
|
|
|
if [ `egrep -c "ID=ubuntu" /etc/os-release` -gt 0 ]
|
|
|
|
then
|
|
|
|
JPEGTURBO="libjpeg-turbo8-dev"
|
|
|
|
else
|
|
|
|
JPEGTURBO="libjpeg62-turbo-dev"
|
|
|
|
fi
|
|
|
|
|
2017-08-02 12:27:53 +02:00
|
|
|
# Get architecture - 32 bit or 64 bit
|
|
|
|
if [ $(getconf LONG_BIT | grep 64) ]; then ARCH="x86_64"; else ARCH="i386"; fi
|
|
|
|
|
2017-07-20 19:46:08 +02:00
|
|
|
# Install Features
|
2017-08-02 13:24:36 +02:00
|
|
|
apt-get -y install build-essential libcairo2-dev ${JPEGTURBO} libpng12-dev 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-08-02 13:24:36 +02:00
|
|
|
libvorbis-dev libwebp-dev mysql-server mysql-client mysql-common mysql-utilities ${TOMCAT} freerdp ghostscript jq wget curl
|
2017-07-20 19:46:08 +02:00
|
|
|
|
|
|
|
# If Apt-Get 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-07-29 23:56:47 +02:00
|
|
|
echo "apt-get failed to install all required dependencies"
|
2017-07-20 19:46:08 +02:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
SERVER=$(curl -s 'https://www.apache.org/dyn/closer.cgi?as_json=1' | jq --raw-output '.preferred|rtrimstr("/")')
|
|
|
|
|
2017-08-02 13:24:36 +02:00
|
|
|
# Add GUACAMOLE_HOME to $TOMCAT ENV
|
|
|
|
echo "" >> /etc/default/${TOMCAT}
|
|
|
|
echo "# GUACAMOLE EVN VARIABLE" >> /etc/default/${TOMCAT}
|
|
|
|
echo "GUACAMOLE_HOME=/etc/guacamole" >> /etc/default/${TOMCAT}
|
2017-07-20 19:46:08 +02:00
|
|
|
|
|
|
|
# Download Guacample Files
|
|
|
|
wget ${SERVER}/incubator/guacamole/${VERSION}-incubating/source/guacamole-server-${VERSION}-incubating.tar.gz
|
|
|
|
wget ${SERVER}/incubator/guacamole/${VERSION}-incubating/binary/guacamole-${VERSION}-incubating.war
|
|
|
|
wget ${SERVER}/incubator/guacamole/${VERSION}-incubating/binary/guacamole-auth-jdbc-${VERSION}-incubating.tar.gz
|
2017-07-22 00:49:40 +02:00
|
|
|
wget https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-${MCJVERSION}.tar.gz
|
2017-07-20 19:46:08 +02:00
|
|
|
|
|
|
|
# Extract Guacamole Files
|
|
|
|
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
|
|
|
|
|
|
|
# MAKE DIRECTORIES
|
|
|
|
mkdir /etc/guacamole
|
|
|
|
mkdir /etc/guacamole/lib
|
|
|
|
mkdir /etc/guacamole/extensions
|
|
|
|
|
|
|
|
# Install GUACD
|
|
|
|
cd guacamole-server-${VERSION}-incubating
|
|
|
|
./configure --with-init-dir=/etc/init.d
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
ldconfig
|
|
|
|
systemctl enable guacd
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
# 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-02 12:27:53 +02:00
|
|
|
ln -s /usr/local/lib/freerdp/* /usr/lib/$ARCH-linux-gnu/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
|
2017-08-02 13:24:36 +02:00
|
|
|
rm -rf /usr/share/${TOMCAT}/.guacamole
|
|
|
|
ln -s /etc/guacamole /usr/share/${TOMCAT}/.guacamole
|
2017-07-20 19:46:08 +02:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
# SQL Code
|
|
|
|
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;"
|
|
|
|
|
|
|
|
# Execute SQL Code
|
|
|
|
echo $SQLCODE | mysql -u root -p$mysqlrootpassword
|
|
|
|
|
|
|
|
# Add Guacamole Schema to newly created database
|
|
|
|
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}*
|