Info |
---|
This page section describes how to upgrade the Guacamole server and Libwhatsi as part of the upgrade to Abiquo 6.1.2 or higher. This upgrade is for remote access to public cloud and it is optional for customers using WebMKS only |
En el RS:
Yum install docker
To use the latest version of Guacamole, do these steps to install and run it in a Docker container on each Remote Services server.
Log in to the Remote Services server and run the following commands.
Code Block yum install docker /usr/bin/systemctl enable docker
...
/usr/bin/systemctl start docker
...
/usr/bin/systemctl stop guacd
...
docker pull guacamole/guacd
...
docker run -t --name guacd -d -p 4822:4822 guacamole/guacd:latest
Comprobar que se ha creado bien el container con: docker ps
Crear file: /etc/systemd/system/docker.guacamole.service
...
To check that the container was created correctly, run
docker ps
and check the output.Create the Docker Guacamole service file
Code Block cat > /etc/systemd/system/docker.guacamole.service <<EOF
...
[Unit]
...
Wants=docker.service
...
After=docker.service
...
[Service]
...
RemainAfterExit=yes
...
ExecStart=/usr/bin/docker start guacd
...
#ExecStop=/usr/bin/docker stop guacd
...
[Install]
...
WantedBy=multi-user.target
...
EOF
...
Edit
/etc/guacamole/guacd.conf
and add the following configuration.Code Block bind_port=4820
Restart the services.
Code Block /usr/bin/systemctl disable guacd
...
/usr/bin/systemctl enable docker.guacamole.service