How to install guacamole server on CentOS
First make sure EPEL repository is active (set enabled=1)
This will install the server components:
yum install guacd libguac-client-* chkconfig guacd on
This will install the client components (web application):
yum install tomcat6 chkconfig tomcat6 on
Then you need to download the main Guacamole web application archive from the Guacamole homepage. Place the downloaded war file in /var/libt/tomcat6/webapps for Tomcat consumption.
mv guacamole-0.8.3.war /var/lib/tomcat6/webapps/guacamole.war
These would place your guacamole related configuration files in /etc/guacamole:
mkdir -p /etc/guacamole echo "export GUACAMOLE_HOME=/etc/guacamole" > /etc/profile.d/guacamole.sh echo "setenvt GUACAMOLE_HOME=/etc/guacamole" > /etc/profile.d/guacamole.sh
