Questions tagged [backup]

The act of saving one's files, data, applications, etc. to secondary media, allowing for the recovery of the files, data, applications, etc. in the event that the primary media becomes unavailable (fails). Also the secondary media used for storage.

5770 questions
2
votes
0 answers

Asana project export via bash / curl / etc example

I'm trying to create a shell script for exporting all projects out of one Asana account. I got it to work temporary using a huge cookie description in a header, but this stops working when restarting or else of course. I am aiming for an automatic…
sebish
  • 21
  • 3
2
votes
2 answers

How to zip a folders contents in C# even if a file is in use

I am learning C# and want to create a simple backup program using C# winforms. I have got the program to zip the folder and move it to another location no problems when the files arent in use. How can I do the same if the files are in use or at…
WillNZ
  • 765
  • 5
  • 13
  • 38
2
votes
5 answers

Bash: Backup all users from /home/ and place it to username.tar.gz

I want backup all users from /home/ and create username.tar.gz for each user. How to get users list from /home/ for Bash?
mirrol
  • 21
  • 2
2
votes
1 answer

Cassandra: Does backup one node's data make sense?

When I copy a node's snapshot to its /var/lib/cassandra/data///, and run 'nodetool refresh', what will happen to this newly replaced sstables and original sstables, because the original sstables is still there, and some new writes still in commitlog…
2
votes
1 answer

Backing up an OpenStack Swift Object Store

We're using OpenStack's Swift Object Store to store user data. I appreciate that our Cloud provider has their own backup/redundancy system in place, but we want to implement our own backup system that stores a copy of everything offsite – somewhere…
Sydin
  • 607
  • 5
  • 14
2
votes
1 answer

Easy backup VPS server

I have VPS (with Ubuntu Server). Files and DBs are not very large (~10-20 GB totally) but I need to make periodic backups of all user data. I'm looking for simple solutions that allows to backup all this stuff to Amazon S3, and meet some…
2
votes
3 answers

Backup SQL Server using ASP.NET

I have virtual hosting with SQL Server. I don't have physical access to SQL Server. I want to make backup and download it. How can I do it from asp.net page?
kusanagi
  • 14,296
  • 20
  • 86
  • 111
2
votes
1 answer

Backup of Redmine files

Does anyone know how to take a backup of Redmine files. My files are located at /data/redmine/apps/redmine/htdocs/files. I need to get them in a folder of .tgz. Is it possible? If yes please tell me the command also to unzip it.
Van
  • 635
  • 1
  • 6
  • 10
2
votes
5 answers

Backing up locally modified and new source files

I'm wondering how other programmers are backing up changes that are not under source control yet, be it new files or modified ones. I'm mostly referring to medium size jobs - hardly worth the effort of making a private branch, but taking more than a…
Eran
  • 21,632
  • 6
  • 56
  • 89
2
votes
1 answer

How do I use shutil to make a python file copy itself after doing a calculation?

So I have a python program that writes prime numbers into a csv file. I now want my python file to make a copy of itself after it runs everything, as a backup for when I tweak around with the original file. I've gotten away with not knowing this so…
Alexander Kalian
  • 1,059
  • 2
  • 9
  • 17
2
votes
1 answer

Firebird nbackup delta file

I want to do a Backup from a Firebird Database. In the documentation I read i should do it with: /opt/firebird/bin/nbackup -B 0 /home/server/daten/DB.fdb DB19082014.nbk This work. I have a file DB19082014.nbk. This I copy to my computer, and now I…
Burner
  • 981
  • 19
  • 41
2
votes
1 answer

Creating an archive with current date using 7z command line corrupts the name

I am trying to set up a 7zip batch file to backup data in an archive with the current date in the file name. So far I set up @ECHO OFF 7z a C:\Download\%DATE:~-4%-%DATE:~4,2%-%DATE:~7,2%_Backupfile.7z -mhe -mx0 -r -ssw -w…
Roger23K
  • 21
  • 1
  • 2
2
votes
3 answers

MySQL database - backup problem

Hi I need to backup MySQL database and then deploy it on another MySQL server. The problem is, I need it backup without data , just script which creates database, tables, procedures, users, resets autoincrements etc. ... I tried MySQL administrator…
Mike
  • 1,197
  • 2
  • 11
  • 11
2
votes
1 answer

Amazon Redshift Automated Snapshot Trigger

What actually triggers an automatic incremental backup/snapshot for Amazon Redshift? Is it time-based? The site says it "periodically takes snapshots and tracks incremental changes to the cluster since the last snapshot" and I know whenever I modify…
david
  • 69
  • 2
  • 9
2
votes
4 answers

Backup of folder + database - Python

I feel like this is quite delicate, I have various folders whith projects I would like to backup into a zip/tar file, but would like to avoid backing up files such as pyc files and temporary files. I also have a Postgres db I need to backup. Any…
RadiantHex
  • 24,907
  • 47
  • 148
  • 244