Using Encryption and Compression Tools With mariadb-backup
Secure and compress backup streams. Learn to pipe backup output to tools like GPG and GZIP for encryption and storage efficiency.
Encrypting and Decrypting Backup With openssl
mariadb-backup --user=root --backup --stream=xbstream | openssl enc -aes-256-cbc -k mypass > backup.xb.encopenssl enc -d -aes-256-cbc -k mypass -in backup.xb.enc | mbstream -xCompressing and Decompressing Backup With gzip
mariadb-backup --user=root --backup --stream=xbstream | gzip > backupstream.gzgunzip -c backupstream.gz | mbstream -xCompressing and Encrypting Backup, Using gzip and openssl
Compressing and Encrypting with 7Zip
Compressing with zstd
Encrypting With GPG
Interactive Input for Passphrases
Writing extra status files
Last updated
Was this helpful?

