Back up OVHcloud Databases.
OVHcloud Databases runs PostgreSQL, MySQL, Redis with standard connectivity — which means encrypted, verified, off-platform backups take a connection string and three minutes.
Find your connection details
OVHcloud Control Panel → Databases → your service → General information; authorize the worker's IP under 'Authorized IPs'.
# host looks like:
postgresql-abc123.database.cloud.ovh.netThe manual way
PostgreSQL (port 5432):
pg_dump -h postgresql-abc123.database.cloud.ovh.net -U USER mydb | gzip > backup.sql.gzMySQL (port 3306):
mysqldump -h postgresql-abc123.database.cloud.ovh.net -u USER --single-transaction mydb | gzip > backup.sql.gzRedis (port 6379):
redis-cli -h postgresql-abc123.database.cloud.ovh.net --rdb - | gzip > backup.sql.gzOne-shot and unencrypted. Scheduling, encryption, retention, verification and alerting are still on you — that's the part xbackupman automates.
The automated way
- 1. Add your OVHcloud Databases connection — the same host, user and password, encrypted at rest.
- 2. Point backups at storage you own (S3, R2, B2, MinIO, Drive…).
- 3. Pick a schedule — down to every 5 minutes; unchanged runs dedup to pointers.
FAQ
Does xbackupman support OVHcloud Databases?
Yes — OVHcloud Databases exposes standard PostgreSQL, MySQL, Redis connectivity, and xbackupman connects with the same credentials you use anywhere else. No special integration or agent is needed on the provider's side.
Are OVHcloud Databases backups encrypted?
Every dump is encrypted with AES-256-GCM using your organization's key before it leaves the worker, then stored in S3-compatible storage you own. OVHcloud Databases (and your storage provider) only ever see ciphertext.
Doesn't OVHcloud Databases already take backups?
Provider snapshots live inside the same account and platform as the database — one compromised credential or billing lapse can take both. Independent, encrypted, restore-verified copies in storage you control are what off-platform backups are for.