SETUP GUACAMOLE IN ALPINE LINUX

Description of your first forum.
Post Reply
admin
Site Admin
Posts: 22
Joined: Sat Jun 20, 2020 1:29 pm

SETUP GUACAMOLE IN ALPINE LINUX

Post by admin »

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

Code: Select all

docker pull jwetzell/guacamole
2. Create container:

Code: Select all

docker create -t -i -p 8080:8080 --name guacamole jwetzell/guacamole
3. Start docker container

Code: Select all

docker start guacamole
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

Post Reply