Questions tagged [backup-strategies]

169 questions
0
votes
1 answer

Ubuntu bash script to delete old backup files from multiple directories

This is the structure of my backup: Backups are stored to a directory named cron_hourly_backup Inside that directory a directory is created each day which is named with ddmmyyyy format. In each of these directories there are 5-6 db backups which…
Ash
  • 15
  • 7
0
votes
3 answers

Extract data from CommVault, Netbackup and EMC Data Domain

I want to create a web application where I can extract the data from CommVault, NetBackup and Data Domain Backups and insert them into a thrid backup client such as Rubrik. Is there any way I can do that using a program? Are there API's available…
Anshul Verma
  • 1,065
  • 1
  • 9
  • 26
0
votes
2 answers

mySQL daily backup from one table to another

If I have 2 tables with the same definition, how would I backup data from it daily? Can I use mySQL Administrator to perform something like this At 12:00am everyday, copy all the rows from main_table to backup_table It will be preferable if it is…
Girish Dusane
  • 1,120
  • 4
  • 12
  • 19
0
votes
1 answer

OBIEE 12.2.1.2 - Restore RPD from an earlier saved copy of the RPD

the topic at hand is creating periodic data backups and data security. 1. RPD OBIEE 11: Save copies of the RPD locally. Possibility to deploy RPDs within the Enterprise Manager. OBIEE 12: Save copies of the RPD locally. No possibility to…
0
votes
2 answers

Script to show how old are all the files in a directory

I created this script few months ago, I've been using it daily to find out which backup files have more than 3 days old or more. it helps me to quickly identify all the files that have 3 days or more of creation. #!/bin/bash #Backup time=$(date…
0
votes
1 answer

Incremental Amzaon AMI backup

I was looking for Amazon script to have incremental backup as AMI images. Say for example I want to have backup of my AMI's at 11:59 PM everyday and I want backups of only last 5 days. Other older AMI's of same instance should not deleted. Any help…
0
votes
1 answer

Importing a Hbase snapshot from HDFS

I have created a snapshot of a table in Hbase and exported it using hbase org.apache.hadoop.hbase.snapshot.ExportSnapshot -snapshot -copy-to Now I have deleted the snapshot from Hbase. How can I import the snapshot from HDFS back to Hbase.
Midhun Mathew Sunny
  • 1,271
  • 4
  • 17
  • 30
0
votes
1 answer

Best way to set up cloudant backup/restore

I have just got to the point of having enough data in my cloudant DB that it would be an issue if I lost it so am now looking into what is a good/reliable(/free!) method of getting regular backups of my data. I've looked at the documentation and its…
0
votes
2 answers

How to backup source repository and zip destination folders?

All sources are on windows OS, and destination backup is on Unix system (we are using Samba). My source repository is similar to : -Repository --Folder1 ---Files --Folder2 ---Files etc... I would like to get a destination similar to…
Fabien Barbier
  • 1,514
  • 4
  • 28
  • 41
0
votes
2 answers

How can I backup mysql database with bareos?

What plugin I should use for that? Can you show me your config from bareos-fd.conf and FileSet section from bareos-dir.conf Thank you!
Zhag
  • 133
  • 2
  • 7
0
votes
1 answer

Is there any continuously backup method for elasticsearch?

I use snapshot method to backup my elasticsearch nodes, it works as follow: PUT /_snapshot/my_backup/snapshot_1?wait_for_completion=true but after new data added to elasticsearch, it's not contained in snapshot, so we need to run it periodically,…
Mairon
  • 621
  • 8
  • 21
0
votes
2 answers

What are the best practices to use to pass a web application from development staging to production?

Our Development environment has many layers and is complicated to replicate or even backup effectively. Basically the File system (ie. /usr/appdir/webapp...) has other applications serving our web application, those application we update doing svn…
Geo
  • 8,663
  • 13
  • 63
  • 93
0
votes
2 answers

Which Umbraco folders do I need to backup after deploying from VS and adding to version control?

I did the following steps: I have created a new Umbraco instance by using the nuget package and visual studio. I have deployed to Azure, using Azure DB as backend. Installed the articulate package. Added my project to version control (including…
0
votes
2 answers

Android sqlite backup/restore without overwriting

Question in short form: It seems from the followups that I should perhaps emphasize and simplify the core of my question. The core is this: other backup options for Android DBs seems to leave the risk that a restore could overwrite data currently in…
0
votes
1 answer

Can rewriting history of a single-developer branch be dangerous?

I use branches as a backup of my WIP. But coming back to it I want to have my git diff back, so I can have again overview on changes while continuing my work. So I usually reset my WIP-commit (git reset HEAD^) and start work again. But when I need…