Databases
Provision managed databases with one click. Use them from your apps running on ZevCloud, browse the data through the built-in Database Manager, or connect from your local machine.
Supported engines
Section titled “Supported engines”| Database | Versions | Default port |
|---|---|---|
| PostgreSQL | 16, 15, 14 | 5432 |
| MySQL | 8 | 3306 |
| MariaDB | 11 | 3306 |
| MongoDB | 7 | 27017 |
| Redis | 7 | 6379 |
Creating a database
Section titled “Creating a database”-
Open your project in the dashboard and click Add Service → Database.
-
Pick the engine and version.
-
Give it a name and pick a plan.
-
Click Create.
The database is provisioned immediately with auto-generated credentials. They appear on the service’s Overview tab — username, password, database name, internal hostname, and a ready-to-use connection URL.
How to use it
Section titled “How to use it”There are three ways to reach a database you’ve created. Pick the one that fits what you’re doing:
| If you want to… | Use |
|---|---|
| Connect from another ZevCloud service (a web app, worker, anything in the same project) | The internal hostname shown on the Overview tab. No public access needed. |
| Browse tables, run SQL, import or export — from your browser | Database Manager (MySQL, MariaDB, PostgreSQL only — see below) |
| Connect from your laptop or an external service (pgAdmin, TablePlus, MongoDB Compass, RedisInsight, your CI, etc.) | Public access (see below) |
Connect from another ZevCloud service
Section titled “Connect from another ZevCloud service”Use the internal hostname as the host. Services on the same project share an internal network and can talk to the database directly — no public exposure needed.
# Example: web app reading from a Postgres database in the same projectDATABASE_URL=postgres://user:pass@<internal-hostname>:5432/dbnameAdd the connection string as an environment variable on your application service. Internal traffic doesn’t count against any egress quota.
Database Manager (web GUI)
Section titled “Database Manager (web GUI)”For MySQL, MariaDB, and PostgreSQL databases, the Database Manager is a web GUI built into the dashboard. Click Open database manager on the database’s Overview tab and a new browser tab opens with the GUI logged in to your database. Browse tables, edit rows, run SQL, import dumps, export backups — all without installing anything.
The Database Manager is available on every plan (free and paid) for standalone databases. Full walkthrough on the Database management page.
Connect from your laptop or an external service
Section titled “Connect from your laptop or an external service”Databases default to internal-only. To reach one from outside the ZevCloud network — your laptop, a Vercel deployment, your CI runner — turn on Public Access.
-
Open the database’s Overview tab.
-
Find the Public Access section.
-
Toggle it on. Public access requires a paid plan.
The dashboard shows a public host (something like apps-sandbox.zevop.net) and a unique port. Use those, plus your existing username / password / database name, in any standard client:
# PostgreSQLpsql "postgresql://user:password@apps-sandbox.zevop.net:54321/dbname"
# MySQL / MariaDBmysql --host=apps-sandbox.zevop.net --port=54321 --user=user --password=password dbname
# MongoDB (Compass connection string)mongodb://user:password@apps-sandbox.zevop.net:54321/dbname
# Redis (RedisInsight or redis-cli)redis-cli -h apps-sandbox.zevop.net -p 54321 -a passwordTerminal access
Section titled “Terminal access”Every database service has a Terminal tab that opens a shell inside the database container. Use it for CLI tooling or quick one-off commands without enabling public access:
# PostgreSQLpsql -U <username> -d <dbname>
# MySQL / MariaDBmysql -u <username> -p <dbname>
# MongoDBmongosh
# Redisredis-cliThe terminal is admin-only and rate-limited.
Importing an existing database
Section titled “Importing an existing database”MySQL, MariaDB, PostgreSQL — use the Database Manager
Section titled “MySQL, MariaDB, PostgreSQL — use the Database Manager”Open the Database Manager, click Import in the left sidebar, pick your .sql or .sql.gz file, click Execute. Streams up to 1 GB per file straight into the database. This is the easiest path for migrations from cPanel, another host, or a local backup.
MongoDB — use mongorestore from your laptop
Section titled “MongoDB — use mongorestore from your laptop”# 1. Turn on public access on the dashboard (paid plan)# 2. From your laptop:mongorestore \ --uri="mongodb://user:password@apps-sandbox.zevop.net:54321/dbname" \ /path/to/dump-dir# 3. Turn public access off when the import finishesRedis — use redis-cli with --pipe or restore an RDB
Section titled “Redis — use redis-cli with --pipe or restore an RDB”# From your laptop, against a temporarily-public Redis:cat dump.txt | redis-cli -h apps-sandbox.zevop.net -p 54321 -a password --pipeFor full snapshot restores (.rdb files), open a support ticket — we can place the file on the container’s data volume directly.
Backups
Section titled “Backups”The fastest path depends on the engine:
- SQL databases: open the Database Manager → Export → choose
gzip+SQL. Browser downloads the dump. Quick, safe, no public access needed. - MongoDB: enable public access, then
mongodump --uri="…" --out=./backupfrom your machine. - Redis: enable public access, then
redis-cli -h … --rdb dump.rdbfrom your machine.
For routine off-site backups (any engine), run the export on a schedule from another ZevCloud service in the same project — internal-network access means you don’t need to enable public exposure for automated backups.
Plan + access summary
Section titled “Plan + access summary”| Engine | Internal access (other ZevCloud services) | Database Manager (web GUI) | Public access (your laptop / external) |
|---|---|---|---|
| PostgreSQL | Every plan | Every plan | Paid plans |
| MySQL | Every plan | Every plan | Paid plans |
| MariaDB | Every plan | Every plan | Paid plans |
| MongoDB | Every plan | Use Compass via public access | Paid plans |
| Redis | Every plan | Use RedisInsight via public access | Paid plans |
If you want a hosted browser-based GUI for MongoDB or Redis specifically, let us know at support@zevcloud.net — we’re tracking demand for it.