Can we sync “Block Storage Volume or Spaces” backup 1 Account to another Account. As Current DO is not providing Advanced User role management based on the Droplet specific. So if anyone is destroyed Spaces or Volume, then all the data will loss.
If we can sync 1 account “Block Storage Volume or Spaces” Data 1 Account to another account, then it would better. Because we can give 1 Account access another Members and we will not worry if that Members had doing any wrong things. Because we already had a Backup on another Account.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hi there,
Yes, this is doable. What you could do is have a completely separate account and deploy a small server with a Block storage attached, then you could use the
rsync
command to transfer all of the files from the main server to that small backup server on the specific separate account.For more information on how to use the
rsync
command, you can take a look at this tutorial here:How to Transfer Files from One Linux Server To Another Using rsync
You can also set that up to run as a cron job so that the files are transferred on regular basis automatically:
https://www.digitalocean.com/community/tutorials/how-to-use-cron-to-automate-tasks-ubuntu-1804
You could do the same with Spaces with a tool like s3cmd:
https://docs.digitalocean.com/products/spaces/resources/s3cmd/
Hope that this helps! Best, Bobby