SETUP GUACAMOLE IN ALPINE LINUX
Posted: Wed Sep 13, 2023 11:35 am
Alpine linux is lightest linux supporting docker.
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
2. Create container:
3. Start docker container
4. Now you can access guacamole webpage on http://<Your Host Machine IP>:8080.
5. Login username: guacadmin and password: guacadmin.
Now you can access all PC's through web browser.
Thanks
Admin
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