2017-07-20 19:46:08 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-09-01 16:33:32 +02:00
|
|
|
# Check if user is root or sudo
|
|
|
|
if ! [ $(id -u) = 0 ]; then echo "Please run this script as sudo or root"; exit 1 ; fi
|
|
|
|
|
2018-03-12 22:54:36 +01:00
|
|
|
# Version number of Guacamole to install
|
2019-01-10 18:21:52 +01:00
|
|
|
GUACVERSION="1.0.0"
|
2017-07-20 19:46:08 +02:00
|
|
|
|
2018-08-29 15:18:29 +02:00
|
|
|
# Colors to use for output
|
|
|
|
YELLOW='\033[1;33m'
|
|
|
|
BLUE='\033[0;34m'
|
|
|
|
RED='\033[0;31m'
|
|
|
|
GREEN='\033[0;32m'
|
|
|
|
NC='\033[0m' # No Color
|
|
|
|
|
2018-09-13 19:21:33 +02:00
|
|
|
# Log Location
|
2018-08-29 15:18:29 +02:00
|
|
|
LOG="/tmp/guacamole_${GUACVERSION}_build.log"
|
2018-09-13 19:21:33 +02:00
|
|
|
|
2018-03-09 22:51:48 +01:00
|
|
|
# Get script arguments for non-interactive mode
|
|
|
|
while [ "$1" != "" ]; do
|
|
|
|
case $1 in
|
|
|
|
-m | --mysqlpwd )
|
|
|
|
shift
|
|
|
|
mysqlpwd="$1"
|
|
|
|
;;
|
|
|
|
-g | --guacpwd )
|
|
|
|
shift
|
|
|
|
guacpwd="$1"
|
|
|
|
;;
|
2019-04-04 19:06:13 +02:00
|
|
|
-u | --mysqluser )
|
|
|
|
shift
|
|
|
|
mysqluser="$1"
|
|
|
|
;;
|
|
|
|
-d | --database )
|
|
|
|
shift
|
|
|
|
DB="$1"
|
|
|
|
;;
|
2018-03-09 22:51:48 +01:00
|
|
|
esac
|
|
|
|
shift
|
2017-11-29 21:50:18 +01:00
|
|
|
done
|
2018-03-09 22:51:48 +01:00
|
|
|
|
2019-04-04 19:06:13 +02:00
|
|
|
# Checking if mysql user given
|
|
|
|
if [ -z "$mysqluser" ]; then
|
|
|
|
mysqluser="guacamole_user"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Checking if database name given
|
|
|
|
if [ -z "$DB" ]; then
|
|
|
|
DB="guacamole_db"
|
|
|
|
fi
|
|
|
|
|
2018-03-09 22:51:48 +01:00
|
|
|
# Get MySQL root password and Guacamole User password
|
|
|
|
if [ -n "$mysqlpwd" ] && [ -n "$guacpwd" ]; then
|
|
|
|
mysqlrootpassword=$mysqlpwd
|
|
|
|
guacdbuserpassword=$guacpwd
|
|
|
|
else
|
2018-08-29 15:18:29 +02:00
|
|
|
echo
|
2018-03-09 22:51:48 +01:00
|
|
|
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-11-29 21:50:18 +01:00
|
|
|
echo
|
2018-03-09 22:51:48 +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
|
2017-11-29 21:50:18 +01:00
|
|
|
echo
|
2018-03-09 22:51:48 +01:00
|
|
|
fi
|
2017-11-29 21:50:18 +01:00
|
|
|
|
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"
|
|
|
|
|
2018-01-20 15:23:04 +01:00
|
|
|
# Ubuntu and Debian have different package names for libjpeg
|
|
|
|
# Ubuntu and Debian versions have differnet package names for libpng-dev
|
2018-09-13 20:47:37 +02:00
|
|
|
# Ubuntu 18.04 does not include universe repo by default
|
2018-01-20 15:23:04 +01:00
|
|
|
source /etc/os-release
|
|
|
|
if [[ "${NAME}" == "Ubuntu" ]]
|
2017-07-29 21:33:15 +02:00
|
|
|
then
|
|
|
|
JPEGTURBO="libjpeg-turbo8-dev"
|
2018-09-13 20:47:37 +02:00
|
|
|
if [[ "${VERSION_ID}" == "18.04" ]]
|
|
|
|
then
|
|
|
|
sed -i 's/bionic main$/bionic main universe/' /etc/apt/sources.list
|
|
|
|
fi
|
2018-01-20 15:23:04 +01:00
|
|
|
if [[ "${VERSION_ID}" == "16.04" ]]
|
|
|
|
then
|
|
|
|
LIBPNG="libpng12-dev"
|
|
|
|
else
|
|
|
|
LIBPNG="libpng-dev"
|
|
|
|
fi
|
|
|
|
elif [[ "${NAME}" == *"Debian"* ]]
|
|
|
|
then
|
2017-07-29 21:33:15 +02:00
|
|
|
JPEGTURBO="libjpeg62-turbo-dev"
|
2018-01-20 15:23:04 +01:00
|
|
|
if [[ "${PRETTY_NAME}" == *"stretch"* ]]
|
|
|
|
then
|
|
|
|
LIBPNG="libpng-dev"
|
|
|
|
else
|
|
|
|
LIBPNG="libpng12-dev"
|
2018-01-20 21:32:22 +01:00
|
|
|
fi
|
2018-01-20 15:23:04 +01:00
|
|
|
else
|
|
|
|
echo "Unsupported Distro - Ubuntu or Debian Only"
|
2018-09-13 19:21:33 +02:00
|
|
|
exit 1
|
2017-07-29 21:33:15 +02:00
|
|
|
fi
|
|
|
|
|
2018-09-13 20:47:37 +02:00
|
|
|
# Update apt so we can search apt-cache for newest tomcat version supported
|
|
|
|
apt-get -qq update
|
|
|
|
|
2018-01-20 15:23:04 +01:00
|
|
|
# Tomcat 8.0.x is End of Life, however Tomcat 7.x is not...
|
|
|
|
# If Tomcat 8.5.x or newer is available install it, otherwise install Tomcat 7
|
2019-01-23 23:57:57 +01:00
|
|
|
# I have not testing with Tomcat9...
|
2018-01-20 15:23:04 +01:00
|
|
|
if [[ $(apt-cache show tomcat8 | egrep "Version: 8.[5-9]" | wc -l) -gt 0 ]]
|
2017-09-20 16:44:39 +02:00
|
|
|
then
|
2018-01-20 15:23:04 +01:00
|
|
|
TOMCAT="tomcat8"
|
2017-09-20 16:44:39 +02:00
|
|
|
else
|
2018-01-20 15:23:04 +01:00
|
|
|
TOMCAT="tomcat7"
|
2017-09-20 16:44:39 +02:00
|
|
|
fi
|
|
|
|
|
2019-07-02 16:27:47 +02:00
|
|
|
if [ -z $(command -v mysql) ]
|
2019-04-04 19:06:13 +02:00
|
|
|
then
|
|
|
|
MYSQL="mysql-server mysql-client mysql-common mysql-utilities"
|
|
|
|
else
|
|
|
|
MYSQL=""
|
|
|
|
fi
|
|
|
|
|
2018-01-20 15:23:04 +01:00
|
|
|
# Uncomment to manually force a tomcat version
|
|
|
|
#TOMCAT=""
|
|
|
|
|
2017-08-22 04:54:27 +02:00
|
|
|
# Install features
|
2019-01-24 00:01:36 +01:00
|
|
|
echo -e "${BLUE}Installing dependencies. This might take a few minutes...${NC}"
|
2018-08-29 15:18:29 +02:00
|
|
|
|
2019-07-02 16:27:59 +02:00
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
2019-01-23 23:15:59 +01:00
|
|
|
apt-get -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 \
|
2019-04-04 19:06:13 +02:00
|
|
|
libvorbis-dev libwebp-dev ${MYSQL} libmysql-java ${TOMCAT} freerdp-x11 \
|
2019-01-23 23:15:59 +01:00
|
|
|
ghostscript wget dpkg-dev &>> ${LOG}
|
|
|
|
|
|
|
|
if [ $? -ne 0 ]; then
|
2019-01-23 23:57:57 +01:00
|
|
|
echo -e "${RED}Failed. See ${LOG}${NC}"
|
2019-01-23 23:15:59 +01:00
|
|
|
exit 1
|
2019-01-23 23:57:57 +01:00
|
|
|
else
|
2019-01-23 23:15:59 +01:00
|
|
|
echo -e "${GREEN}OK${NC}"
|
|
|
|
fi
|
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
|
2018-01-21 01:34:58 +01:00
|
|
|
SERVER="http://apache.org/dyn/closer.cgi?action=download&filename=guacamole/${GUACVERSION}"
|
2018-09-13 20:47:37 +02:00
|
|
|
echo -e "${BLUE}Downloading Files...${NC}"
|
2018-01-20 22:54:25 +01:00
|
|
|
|
2017-11-29 21:50:18 +01:00
|
|
|
# Download Guacamole Server
|
2018-08-29 15:18:29 +02:00
|
|
|
wget -q --show-progress -O guacamole-server-${GUACVERSION}.tar.gz ${SERVER}/source/guacamole-server-${GUACVERSION}.tar.gz
|
2018-01-21 01:34:58 +01:00
|
|
|
if [ $? -ne 0 ]; then
|
2018-09-13 19:21:33 +02:00
|
|
|
echo -e "${RED}Failed to download guacamole-server-${GUACVERSION}.tar.gz"
|
|
|
|
echo -e "${SERVER}/source/guacamole-server-${GUACVERSION}.tar.gz${NC}"
|
|
|
|
exit 1
|
2017-11-29 21:50:18 +01:00
|
|
|
fi
|
2018-09-13 19:21:33 +02:00
|
|
|
echo -e "${GREEN}Downloaded guacamole-server-${GUACVERSION}.tar.gz${NC}"
|
2017-11-29 21:50:18 +01:00
|
|
|
|
|
|
|
# Download Guacamole Client
|
2018-08-29 15:18:29 +02:00
|
|
|
wget -q --show-progress -O guacamole-${GUACVERSION}.war ${SERVER}/binary/guacamole-${GUACVERSION}.war
|
2018-01-21 01:34:58 +01:00
|
|
|
if [ $? -ne 0 ]; then
|
2018-09-13 19:21:33 +02:00
|
|
|
echo -e "${RED}Failed to download guacamole-${GUACVERSION}.war"
|
|
|
|
echo -e "${SERVER}/binary/guacamole-${GUACVERSION}.war${NC}"
|
|
|
|
exit 1
|
2017-11-29 21:50:18 +01:00
|
|
|
fi
|
2018-09-13 19:21:33 +02:00
|
|
|
echo -e "${GREEN}Downloaded guacamole-${GUACVERSION}.war${NC}"
|
2017-11-29 21:50:18 +01:00
|
|
|
|
2019-05-18 20:53:48 +02:00
|
|
|
# Download Guacamole authentication extensions (Database)
|
2018-08-29 15:18:29 +02:00
|
|
|
wget -q --show-progress -O guacamole-auth-jdbc-${GUACVERSION}.tar.gz ${SERVER}/binary/guacamole-auth-jdbc-${GUACVERSION}.tar.gz
|
2018-01-21 01:34:58 +01:00
|
|
|
if [ $? -ne 0 ]; then
|
2018-09-13 19:21:33 +02:00
|
|
|
echo -e "${RED}Failed to download guacamole-auth-jdbc-${GUACVERSION}.tar.gz"
|
|
|
|
echo -e "${SERVER}/binary/guacamole-auth-jdbc-${GUACVERSION}.tar.gz"
|
|
|
|
exit 1
|
2017-11-29 21:50:18 +01:00
|
|
|
fi
|
2018-09-13 19:21:33 +02:00
|
|
|
echo -e "${GREEN}Downloaded guacamole-auth-jdbc-${GUACVERSION}.tar.gz${NC}"
|
2017-11-29 21:50:18 +01:00
|
|
|
|
2019-05-18 20:53:48 +02:00
|
|
|
# Download Guacamole authentication extensions (TOTP)
|
|
|
|
wget -q --show-progress -O guacamole-auth-totp-${GUACVERSION}.tar.gz ${SERVER}/binary/guacamole-auth-totp-${GUACVERSION}.tar.gz
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo -e "${RED}Failed to download guacamole-auth-totp-${GUACVERSION}.tar.gz"
|
|
|
|
echo -e "${SERVER}/binary/guacamole-auth-totp-${GUACVERSION}.tar.gz"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
echo -e "${GREEN}Downloaded guacamole-auth-totp-${GUACVERSION}.tar.gz${NC}"
|
|
|
|
|
2018-08-29 15:18:29 +02:00
|
|
|
echo -e "${GREEN}Downloading complete.${NC}"
|
|
|
|
|
2017-08-22 04:54:27 +02:00
|
|
|
# Extract Guacamole files
|
2018-01-21 01:34:58 +01:00
|
|
|
tar -xzf guacamole-server-${GUACVERSION}.tar.gz
|
|
|
|
tar -xzf guacamole-auth-jdbc-${GUACVERSION}.tar.gz
|
2019-05-18 20:53:48 +02:00
|
|
|
tar -xzf guacamole-auth-totp-${GUACVERSION}.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
|
|
|
|
2018-03-12 23:15:26 +01:00
|
|
|
# Install guacd
|
2018-01-21 01:34:58 +01:00
|
|
|
cd guacamole-server-${GUACVERSION}
|
2018-03-12 23:15:26 +01:00
|
|
|
|
2019-01-23 23:15:59 +01:00
|
|
|
echo -e "${BLUE}Building Guacamole with GCC $(gcc --version | head -n1 | grep -oP '\)\K.*' | awk '{print $1}') ${NC}"
|
2018-08-29 15:18:29 +02:00
|
|
|
|
2019-05-18 20:53:48 +02:00
|
|
|
echo -e "${BLUE}Configuring. This might take a minute...${NC}"
|
2019-01-23 23:15:59 +01:00
|
|
|
./configure --with-init-dir=/etc/init.d &>> ${LOG}
|
|
|
|
if [ $? -ne 0 ]; then
|
2019-01-23 23:57:57 +01:00
|
|
|
echo -e "${RED}Failed. See ${LOG}${NC}"
|
2019-01-23 23:15:59 +01:00
|
|
|
exit 1
|
2018-03-12 23:15:26 +01:00
|
|
|
else
|
2019-01-23 23:15:59 +01:00
|
|
|
echo -e "${GREEN}OK${NC}"
|
2018-03-12 23:15:26 +01:00
|
|
|
fi
|
2019-01-23 23:15:59 +01:00
|
|
|
|
2019-01-24 00:01:36 +01:00
|
|
|
echo -e "${BLUE}Running Make. This might take a few minutes...${NC}"
|
2019-01-23 23:15:59 +01:00
|
|
|
make &>> ${LOG}
|
|
|
|
if [ $? -ne 0 ]; then
|
2019-01-23 23:57:57 +01:00
|
|
|
echo -e "${RED}Failed. See ${LOG}${NC}"
|
2019-01-23 23:15:59 +01:00
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo -e "${GREEN}OK${NC}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo -e "${BLUE}Running Make Install...${NC}"
|
|
|
|
make install &>> ${LOG}
|
|
|
|
if [ $? -ne 0 ]; then
|
2019-01-23 23:57:57 +01:00
|
|
|
echo -e "${RED}Failed. See ${LOG}${NC}"
|
2019-01-23 23:15:59 +01:00
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo -e "${GREEN}OK${NC}"
|
|
|
|
fi
|
|
|
|
|
2017-07-20 19:46:08 +02:00
|
|
|
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
|
2018-01-21 01:34:58 +01:00
|
|
|
mv guacamole-${GUACVERSION}.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/
|
2018-02-05 19:11:58 +01:00
|
|
|
ln -s /usr/share/java/mysql-connector-java.jar /etc/guacamole/lib/
|
2018-01-21 01:34:58 +01:00
|
|
|
cp guacamole-auth-jdbc-${GUACVERSION}/mysql/guacamole-auth-jdbc-mysql-${GUACVERSION}.jar /etc/guacamole/extensions/
|
2019-05-18 20:53:48 +02:00
|
|
|
cp guacamole-auth-totp-${GUACVERSION}/guacamole-auth-totp-${GUACVERSION}.jar /etc/guacamole/extensions/
|
2017-07-20 19:46:08 +02:00
|
|
|
|
|
|
|
# Configure guacamole.properties
|
2019-06-09 20:17:01 +02:00
|
|
|
rm -f /etc/guacamole/guacamole.properties
|
|
|
|
touch /etc/guacamole/guacamole.properties
|
2017-07-20 19:46:08 +02:00
|
|
|
echo "mysql-hostname: localhost" >> /etc/guacamole/guacamole.properties
|
|
|
|
echo "mysql-port: 3306" >> /etc/guacamole/guacamole.properties
|
2018-08-29 15:18:29 +02:00
|
|
|
echo "mysql-database: ${DB}" >> /etc/guacamole/guacamole.properties
|
2019-04-04 19:06:13 +02:00
|
|
|
echo "mysql-username: ${mysqluser}" >> /etc/guacamole/guacamole.properties
|
2018-09-13 19:21:33 +02:00
|
|
|
echo "mysql-password: ${guacdbuserpassword}" >> /etc/guacamole/guacamole.properties
|
2017-07-20 19:46:08 +02:00
|
|
|
|
|
|
|
# restart tomcat
|
2018-09-13 19:21:33 +02:00
|
|
|
echo -e "${BLUE}Restarting tomcat...${NC}"
|
2018-08-29 15:18:29 +02:00
|
|
|
|
2017-08-02 13:24:36 +02:00
|
|
|
service ${TOMCAT} restart
|
2018-08-29 15:18:29 +02:00
|
|
|
if [ $? -ne 0 ]; then
|
2018-09-13 19:21:33 +02:00
|
|
|
echo -e "${RED}Failed${NC}"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo -e "${GREEN}OK${NC}"
|
|
|
|
fi
|
2017-07-20 19:46:08 +02:00
|
|
|
|
2019-04-04 19:06:13 +02:00
|
|
|
# Create guacamole_db and grant $mysqluser permissions to it
|
2017-07-20 19:46:08 +02:00
|
|
|
|
2017-08-22 04:54:27 +02:00
|
|
|
# SQL code
|
2017-07-20 19:46:08 +02:00
|
|
|
SQLCODE="
|
2018-08-29 15:18:29 +02:00
|
|
|
create database ${DB};
|
2019-04-04 19:06:13 +02:00
|
|
|
create user if not exists '${mysqluser}'@'localhost' identified by \"${guacdbuserpassword}\";
|
|
|
|
GRANT SELECT,INSERT,UPDATE,DELETE ON guacamole_db.* TO '${mysqluser}'@'localhost';
|
2017-07-20 19:46:08 +02:00
|
|
|
flush privileges;"
|
|
|
|
|
2017-08-22 04:54:27 +02:00
|
|
|
# Execute SQL code
|
2018-09-13 19:21:33 +02:00
|
|
|
echo ${SQLCODE} | mysql -u root -p${mysqlrootpassword}
|
2017-07-20 19:46:08 +02:00
|
|
|
|
2017-08-22 04:54:27 +02:00
|
|
|
# Add Guacamole schema to newly created database
|
2018-08-29 15:18:29 +02:00
|
|
|
echo -e "Adding db tables..."
|
2018-09-13 19:21:33 +02:00
|
|
|
cat guacamole-auth-jdbc-${GUACVERSION}/mysql/schema/*.sql | mysql -u root -p${mysqlrootpassword} ${DB}
|
2018-08-29 15:18:29 +02:00
|
|
|
if [ $? -ne 0 ]; then
|
2018-09-13 19:21:33 +02:00
|
|
|
echo -e "${RED}Failed${NC}"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo -e "${GREEN}OK${NC}"
|
|
|
|
fi
|
2017-07-20 19:46:08 +02:00
|
|
|
|
2018-01-21 03:57:00 +01:00
|
|
|
# Ensure guacd is started
|
|
|
|
service guacd start
|
|
|
|
|
2017-07-20 19:46:08 +02:00
|
|
|
# Cleanup
|
2018-09-13 19:21:33 +02:00
|
|
|
echo -e "${BLUE}Cleanup install files...${NC}"
|
2018-08-29 15:18:29 +02:00
|
|
|
|
2017-07-20 19:46:08 +02:00
|
|
|
rm -rf guacamole-*
|
2018-08-29 15:18:29 +02:00
|
|
|
if [ $? -ne 0 ]; then
|
2018-09-13 19:21:33 +02:00
|
|
|
echo -e "${RED}Failed${NC}"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo -e "${GREEN}OK${NC}"
|
|
|
|
fi
|
2018-08-29 15:18:29 +02:00
|
|
|
|
2018-09-13 19:21:33 +02:00
|
|
|
echo -e "${BLUE}Installation Complete\nhttp://localhost:8080/guacamole/\nDefault login guacadmin:guacadmin\nBe sure to change the password.${NC}"
|