Open the server Apps tab
Select the tutorial-vps VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.


Clientless remote desktop gateway
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Apache Guacamole template in Server Compass to deploy a clientless remote desktop gateway on your VPS, initialize the database schema, then verify the Guacamole login screen in a browser.
Select the tutorial-vps VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.

Click New App and choose the template deployment path so Server Compass can load the built-in catalog.

Use the template picker search to find Apache Guacamole in the Server Compass template catalog.

Choose the Apache Guacamole template. Server Compass fills the Guacamole web service, guacd service, MySQL service, persistent database volume, and web port.

Confirm the app name and compose services. In this run, the app was named guacamole-demo and used host port 3001.

Review the generated compose settings, confirm the web port is available, keep the generated database secrets hidden, and click Deploy Now.

Keep the deployment modal open while Server Compass uploads the compose file, pulls the Guacamole, guacd, and MySQL images, starts the containers, and verifies the stack.

After deployment finishes, return to the Apps tab and confirm the Apache Guacamole app is marked Running with its application URL available.

Initialize the Guacamole MySQL schema, restart the Guacamole container, then open the `/guacamole/` application URL in a browser. The login screen confirms the gateway is reachable.

The Apache Guacamole login screen loaded successfully in a browser after initializing the database schema.
It deploys the Apache Guacamole web container, guacd proxy daemon, and a MySQL database with a persistent data volume.
The tutorial used host port 3001, which maps to the Apache Guacamole web UI on container port 8080.
A fresh Apache Guacamole deployment is considered reachable when the login screen loads. Creating remote desktop connections depends on your own hosts and access policies.
No. The deployment guide should live on the Apache Guacamole template detail page and be linked from the reusable template deployment docs page.
Deploy Apache Guacamole the traditional way with SSH and Docker Compose.
Begin by establishing a secure connection to your server through the terminal.
# Access your VPS
ssh root@YOUR_SERVER_IP
# With SSH key authentication
ssh -i ~/.ssh/your-private-key root@YOUR_SERVER_IPFirst time? Ensure Docker is installed first: curl -fsSL https://get.docker.com | sh
Create a dedicated folder for your application files.
# Create and navigate to project directory
mkdir -p ~/apps/guacamole
cd ~/apps/guacamoleCreate the following docker-compose.yml in your project directory:
services:
guacamole:
image: guacamole/guacamole:latest
ports:
- "8080:8080"
environment:
- GUACD_HOSTNAME=guacd
- MYSQL_HOSTNAME=db
- MYSQL_DATABASE=guacamole
- MYSQL_USER=guacamole
- MYSQL_PASSWORD=<your-db-password>
restart: unless-stopped
depends_on:
- guacd
- db
guacd:
image: guacamole/guacd:latest
restart: unless-stopped
db:
image: mysql:8.0
environment:
- MYSQL_ROOT_PASSWORD=<your-db-root-password>
- MYSQL_DATABASE=guacamole
- MYSQL_USER=guacamole
- MYSQL_PASSWORD=<your-db-password>
volumes:
- mysql_data:/var/lib/mysql
restart: unless-stopped
volumes:
mysql_data:
PORTHost port(default: 8080)DB_PASSWORDDB passwordDB_ROOT_PASSWORDRoot passwordRun Docker Compose to launch your application.
# Launch the stack
docker compose up -d
# Verify container status
docker compose ps
# Follow the logs
docker compose logs --followConfigure UFW to allow traffic to your application.
# Allow the application port through firewall
sudo ufw allow 8080/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:8080Server Compass makes deploying Apache Guacamole effortless. Visual setup, one-click deploy, done.
After deploying Apache Guacamole with Server Compass, complete these steps to finish setup
Initialize database schema
Login and change password
Configure connections
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Apache Guacamole
Simply download Server Compass, connect to your VPS, and select Apache Guacamole from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Apache Guacamole requires a minimum of 512MB RAM. We recommend a VPS with at least 1024MB RAM for optimal performance. Any modern Linux server with Docker support will work.
Yes! Server Compass provides volume mapping that allows you to import existing data. You can also use standard Apache Guacamole backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Apache Guacamole image will be pulled and deployed with zero downtime.
Apache Guacamole is open-source software. You only pay for your VPS hosting (typically $5-20/month) and optionally Server Compass ($29 one-time). No subscription fees or per-seat pricing.

Open-source backend in a single file with realtime database, auth, and file storage

Open-source backend-as-a-service - self-hosted Firebase alternative

Open-source backend framework with dashboard

Full Supabase self-hosted with Kong, GoTrue Auth, Realtime, and Studio
Download Server Compass and deploy Apache Guacamole to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass