What is Guacamole
If you have a network and PC's are behind a firewall you cannot directly RDP or VNC into PC's. To Solve this issue you can host a web server on any one PC behind firewall and through webserver you can access other PC.
Apache has solution for this called guacamole. From guacamole you can RDP or VNC to different systems.
We can use docker to setup guacamole. The details are as follows:
1. Pull docker
Code: Select all
docker pull jwetzell/guacamole
Code: Select all
docker create -t -i -p 8080:8080 --name guacamole jwetzell/guacamole
Code: Select all
docker start guacamole
5. Login username: guacadmin and password: guacadmin.
Now you can access all PC's through web browser.
Thanks
Admin