Documentation
Everything you need to deploy and manage your applications on HostStack.
Managed Databases
Provision and manage PostgreSQL and Redis databases with automated backups.
Supported Engines
PostgreSQL 17
Full-featured relational database with extensions, connection pooling, and point-in-time recovery.
Redis 7
In-memory data store for caching, queues, and real-time features. Persistent by default.
Creating a Database
- Go to Databases in your dashboard
- Click New Database
- Choose engine, version, plan, and region
- Your database is provisioned in seconds
You can also create databases via the CLI or SDK:
bash
hoststack db create --name my-db --engine postgres --plan starter --project prj_abc123Connecting
Connection details are available in the database detail page. Click Show Credentials to reveal the password.
Connection string
postgresql://user:password@host:5432/dbname
redis://default:password@host:6379Connect via CLI
# Opens psql/redis-cli with credentials pre-filled
hoststack db connect <database-id>Backups
PostgreSQL databases are automatically backed up daily at 02:00 UTC. Backups are retained for 7 days. You can restore any backup from the database detail page in your dashboard.
Next: Billing & Plans