YugabyteDB Backup
How to backup and restore your YugabyteDB database for Curio
Prerequisites
Backup Methods
Method 1: Using ysql_dump (Recommended)
Full Database Backup
ysql_dump -h <yugabyte-host> -p 5433 -U <username> -d <database> -F c -f curio_backup_$(date +%Y%m%d_%H%M%S).dumpExample with typical Curio configuration
Schema-Only Backup
Method 2: Using ysqlsh with COPY
Restore Procedures
Restore from ysql_dump backup
Full Restore
Restore from SQL dump
Automated Backup Script
Best Practices
Troubleshooting
Connection Issues
Permission Errors
Additional Resources
Last updated