Hi,
I’m running OMV with somes services with docker.
I want to backup my server i a choose duplicati , first i only backup few docker volumes for testing and upload to MEGA. It’s looks working.
Now, i want to backup all my OMV (Nextcloud , Jellyfin , media etc) only 200GO so I take my RPI and instal minio , it’s works fine , i can upload to bucket with duplicati.
my bucket : duplicati
inside i have folder : homelab
(this Issue is solved) First time the backup take very long time, very slow (6 cores +12G RAM full local 1G network) i fix this because i backup firefox container full , and the cache contains 700 000 files … If can help some one
You can check number of files in active directory with this
root@omvdocker-compose/firefox# for i in */ .*/ ; do echo -n $i": " ; (find "$i" -type f | wc -l) ; done
Downloads/: 6
ssl/: 2
.cache/: 765189
.config/: 19
.dbus/: 3
.local/: 6
.mozilla/: 305
.XDG/: 0
My issue : when the backup is finished , i have 263 files missing from storage.
But in bucket > duplicati/homelab , i have 260 files
Duplicati want to repair, i repair but instant error :
2024-09-08 13:15:17 +02 - [Error-Duplicati.Library.Main.Controller-FailedOperation]: L’opération Repair a échoué avec l’erreur : The backup storage destination is missing data files.
I check on the forum and i find to run backup with command --no-backend-verification and it’s worked but only for 3 files
When i try restart backup 260 files missing, ask to repair, repair tell me filles are missing so … i need help pleas.
Edit : when i try regenerate the database : No files were found at the remote location, perhaps the target url is incorrect?
But the connection with minio is ok i retry before and after
I think i found a bug : i select MinioSDK insteade of Amazon SDK for the S3 library, i save but when i come back to the edit backup it’s again Amazon SDK
Thank guys