NextCloud Disaster Recovery?
-
Assuming you are protecting against loss of your VM, but not the failure of S3, a normal backup of NC will handle recovery of all of the oddly named files. It will know which is which from its database which is not on S3.
-
@JaredBusch said in NextCloud Disaster Recovery?:
@JasGot said in NextCloud Disaster Recovery?:
The one thing that still worries me is the fact that the files are not stored with human readable (or even original) filenames. A non recoverable NC install leaves me without any idea of which file is which. Unless I am missing something......
Are you using the Nextcloud encryption? If so, that is why you cannot see files.
By default everything is stored exactly as it is on the web interface / sync client.
Aha! Moment here..... It's because I use S3 as the primary storage...... Local primary storage is indeed native filenaming conventions. Thanks for opening that thought @JaredBusch
I have a NextCloud installed and running at a Linux server, and its configured to have Amazon S3 bucket as the primary storage and if I sync files at local folder its uploaded to the S3 bucket, but the problem is that the files appears as urn:oid:1158
Now, does this change any of your thoughts on just making sure the NC database is backed up?
Assuming I am forced to recover from the Cross Region replication, and no database backup; you can see how I am out of luck. So, with my primary datastore being S3, that database is even more important.
-
@scottalanmiller I snapshot my VM occasionally. This is clearly not sufficient since I upload to NC hourly....
-
@JasGot said in NextCloud Disaster Recovery?:
So, with my primary datastore being S3, that database is even more important.
True, you lack the "benefit" of obvious filenames.
-
@JasGot said in NextCloud Disaster Recovery?:
@scottalanmiller I snapshot my VM occasionally. This is clearly not sufficient since I upload to NC hourly....
Depends, if "occasionally" means every hour or two, you are probably good If it means every few weeks, probably not.
-
I would look at something like Veeam agents.
-
@scottalanmiller Would you accept "Months"
My VM Snapshots are primarily to quickly rebuild NC after I mess it up!
-
@JasGot said in NextCloud Disaster Recovery?:
@scottalanmiller Would you accept "Months"
My VM Snapshots are primarily to quickly rebuild NC after I mess it up!
We built with Salt for that reason. No backup needed for the system itself, only the data. Then we can only back up the database and the files, which is obviously 90% of the stuff so not that much of a benefit, but no need to go back to a snap in order to recover quickly.
-
@scottalanmiller said in NextCloud Disaster Recovery?:
@JasGot said in NextCloud Disaster Recovery?:
So, with my primary datastore being S3, that database is even more important.
True, you lack the "benefit" of obvious filenames.
The benefit of real file names with Nextcloud is that it allows you to recover even the loss of the database if you have only the files.
You can spin up a new instance, create all new user accounts matching the names in the folder structure.
Then you copy the data in and run the command to rescan the files.Assuming Fedora with default locations:
cd /var/www/html/nextcloud sudo -u apache php occ files:scan --all
-
Since it doesn't look like Nextcloud will ever address this method, does anyone have any real world experience and thoughts on Nextcloud's other methods of accessing offsite storage?
Specifically: while using human readable paths and filenames.
This is from Nextcloud's site, and it gives me hope.......
Any storage technology you need Some of the storage technologies supported in Nextcloud include NFS and local storage as well as scalable, multi-bucket capable object storage like S3 and SWIFT compatible and CIFS/Windows Shares. Nextcloud can also seamlessly access files on (s)FTP, SharePoint systems and more.
Thanks!