📞 🇺🇸 +1 361 304 4309 📞 🇮🇳 +91 76769 02281 ✉️ [email protected]
Cloud & Infrastructure

How to Set Up Offsite Backup to Backblaze B2

How to Set Up Offsite Backup to Backblaze B2

Backblaze B2 costs $6/TB/month — 10x cheaper than Amazon S3. It is the best value cloud storage for server backups.

Step 1 — Create Account and Bucket

Sign up at backblaze.com/b2 → Create bucket → Create application key with write access

Step 2 — Install rclone

curl https://rclone.org/install.sh | sudo bash

Step 3 — Configure rclone for B2

rclone config
# n → Name: b2backup → Type: 2 (Backblaze B2)
# Enter Account ID and Application Key

Step 4 — Backup Script

#!/bin/bash
DATE=$(date +%Y-%m-%d)
TEMP="/tmp/backup-$DATE"
mkdir -p $TEMP

tar -czf $TEMP/www-$DATE.tar.gz /var/www
mysqldump --all-databases -u root -p'password' | gzip > $TEMP/databases-$DATE.sql.gz
rclone copy $TEMP b2backup:backups-yourserver/$DATE --progress
rm -rf $TEMP

Conclusion

Backblaze B2 offers the best value for offsite backup storage. Our team configures offsite backup solutions using B2 and other providers.

#backblaze #b2 #backup #offsite #cloud
Share:
🛠️ Need Expert Help?

Don't want to do this yourself?

Our certified engineers implement this for you — correctly, securely, and within hours. Available 24/7 with 15-minute emergency response.

  • ✅ 19+ years experience
  • ✅ 60+ certified engineers
  • ✅ 1,600+ servers managed
  • ✅ 40+ countries served
  • ✅ Plans from $49/mo

Get Expert Help — Free Consultation

We respond within 4 hours · No commitment required

Please enter your name and a valid email.

No spam. Privacy Policy

Comments