How to use rclone with eazyBackup e3
Use rclone to sync or backup data to e3 Object Storage. Connection settings: Connection details.
1
4
6
7
8
Create a bucket
From the client area: Buckets → Create Bucket.
Or with rclone:
rclone mkdir e3:my-bucket-nameSync example
rclone sync /local/path e3:my-bucket-name/backup-folder --progressScheduled backup script
#!/bin/bash
# mydailybackup.sh
SOURCE="/data/to/backup"
REMOTE="e3:my-bucket-name/daily"
rclone sync "$SOURCE" "$REMOTE" --log-file=/var/log/rclone-e3.logAdd to cron for automated runs.
Troubleshooting
Issue
Check
Access denied
Keys must match the bucket owner user.
Wrong endpoint
Use s3.ca-central-1.eazybackup.com, not AWS endpoints.
Empty bucket list
Create a bucket in the dashboard or verify the key’s user owns buckets.