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.


High-performance Cassandra-compatible NoSQL database
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the ScyllaDB template in Server Compass to deploy a high-performance Cassandra-compatible NoSQL database on your VPS, then verify the CQL service from inside the container.
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 ScyllaDB in the Server Compass template catalog.

Choose the ScyllaDB template. Server Compass fills the ScyllaDB container, persistent data volume, CQL port, REST API port, and Scylla runtime settings.

Confirm the app name and compose service. In this run, the app was named scylladb-demo and used host port 9042 for CQL and host port 10000 for the REST API.

Review the generated environment values, confirm the CQL and REST API ports are available, and click Deploy Now.

Keep the deployment modal open while Server Compass uploads the compose file, pulls the ScyllaDB image, starts the container, and verifies the stack.

After deployment finishes, return to the Apps tab and confirm the ScyllaDB app is marked Running with the database port available.

Open the app detail view and verify the running ScyllaDB container. In this tutorial run, cqlsh described the cluster from inside the container without exposing credentials.

The ScyllaDB container returned the cluster description from an internal cqlsh verification command.
It deploys a ScyllaDB container with a persistent data volume, CQL and REST API ports, and a conservative single-node runtime command for VPS usage.
The tutorial used host port 9042 for CQL. The template also exposes the ScyllaDB REST API on host port 10000.
ScyllaDB is a database service, not a web application. The tutorial verifies it with cqlsh inside the running container instead of opening a browser page.
No. The deployment guide should live on the ScyllaDB template detail page and be linked from the reusable template deployment docs page.
Learn how to self-host ScyllaDB with this hands-on deployment guide.
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/scylladb
cd ~/apps/scylladbCreate the following docker-compose.yml in your project directory:
services:
scylladb:
image: scylladb/scylla:latest
ports:
- "9042:9042"
- "10000:10000"
volumes:
- scylla_data:/var/lib/scylla
command: --smp 1 --memory 750M --overprovisioned 1 --api-address 0.0.0.0
restart: unless-stopped
volumes:
scylla_data:
PORTCQL port(default: 9042)API_PORTREST API port(default: 10000)Run 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 9042/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:9042Let Server Compass handle the complexity. Deploy ScyllaDB with a simple, intuitive interface.
After deploying ScyllaDB with Server Compass, complete these steps to finish setup
Connect with cqlsh
Create keyspaces and tables
Enable authentication
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting ScyllaDB
Simply download Server Compass, connect to your VPS, and select ScyllaDB from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
ScyllaDB requires a minimum of 2048MB RAM. We recommend a VPS with at least 4096MB 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 ScyllaDB backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest ScyllaDB image will be pulled and deployed with zero downtime.
ScyllaDB 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.
Download Server Compass and deploy ScyllaDB to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass