2016-08-14 20:29:46 +02:00
#!/bin/bash
# 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
# Install Features
2016-12-31 23:40:40 +01:00
apt-get -y install libcairo2-dev libjpeg-turbo8-dev libpng12-dev libossp-uuid-dev libavcodec-dev libavutil-dev libswscale-dev libfreerdp-dev libpango1.0-dev libssh2-1-dev libtelnet-dev libvncserver-dev libpulse-dev libssl-dev libvorbis-dev libwebp-dev mysql-server mysql-client mysql-common mysql-utilities tomcat8 freerdp ghostscript jq
2016-08-14 20:29:46 +02:00
# Add GUACAMOLE_HOME to Tomcat8 ENV
echo "" >> /etc/default/tomcat8
echo "# GUACAMOLE EVN VARIABLE" >> /etc/default/tomcat8
echo "GUACAMOLE_HOME=/etc/guacamole" >> /etc/default/tomcat8
# Download Guacample Files
2016-12-31 23:40:40 +01:00
SERVER = $( curl -s 'https://www.apache.org/dyn/closer.cgi?as_json=1' | jq --raw-output '.preferred' )
wget $SERVER /incubator/guacamole/0.9.10-incubating/source/guacamole-server-0.9.10-incubating.tar.gz
wget $SERVER /incubator/guacamole/0.9.10-incubating/binary/guacamole-0.9.10-incubating.war
wget $SERVER /incubator/guacamole/0.9.10-incubating/binary/guacamole-auth-jdbc-0.9.10-incubating.tar.gz
wget https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.40.tar.gz
2016-08-14 20:29:46 +02:00
#Extract Guacamole Files
2016-12-31 23:40:40 +01:00
tar -xzf guacamole-server-0.9.10-incubating.tar.gz
tar -xzf guacamole-auth-jdbc-0.9.10-incubating.tar.gz
tar -xzf mysql-connector-java-5.1.40.tar.gz
2016-08-14 20:29:46 +02:00
# MAKE DIRECTORIES
mkdir /etc/guacamole
mkdir /etc/guacamole/lib
mkdir /etc/guacamole/extensions
# Install GUACD
2016-12-31 23:40:40 +01:00
cd guacamole-server-0.9.10-incubating
2016-08-14 20:29:46 +02:00
./configure --with-init-dir= /etc/init.d
make
make install
ldconfig
systemctl enable guacd
cd ..
# Move files to correct locations
2016-12-31 23:40:40 +01:00
mv guacamole-0.9.10-incubating.war /etc/guacamole/guacamole.war
2016-08-14 20:29:46 +02:00
ln -s /etc/guacamole/guacamole.war /var/lib/tomcat8/webapps/
ln -s /usr/local/lib/freerdp/* /usr/lib/x86_64-linux-gnu/freerdp/.
2016-12-31 23:40:40 +01:00
cp mysql-connector-java-5.1.40/mysql-connector-java-5.1.40-bin.jar /etc/guacamole/lib/
cp guacamole-auth-jdbc-0.9.10-incubating/mysql/guacamole-auth-jdbc-mysql-0.9.10-incubating.jar /etc/guacamole/extensions/
2016-08-14 20:29:46 +02:00
# 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
rm -rf /usr/share/tomcat8/.guacamole
ln -s /etc/guacamole /usr/share/tomcat8/.guacamole
# restart tomcat
service tomcat8 restart
2016-08-14 21:55:43 +02:00
# Create guacamole_db and grant guacamole_user permissions to it
echo " 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; " | mysql -u root -p$mysqlrootpassword
2016-08-14 20:29:46 +02:00
2016-12-31 23:40:40 +01:00
cat guacamole-auth-jdbc-0.9.10-incubating/mysql/schema/*.sql | mysql -u root -p$mysqlrootpassword guacamole_db
2016-08-14 20:29:46 +02:00
2016-12-31 23:40:40 +01:00
rm -rf guacamole-*
rm -rf mysql-connector-java-5.1.40*