Tagged Questions
4
votes
2answers
912 views
Best method for postgres incremental backup
I am currently using pg_dump piped to gzip piped to split. But the problem with this is that alle output files are always changed. So checksum-based backup always copies all data.
Are there any other ...
3
votes
1answer
754 views
Solr Incremental backup on real-time system with heavy index
I implement search engine with solr that import minimal 2 million doc per day.
User must can search on imported doc ASAP (near real-time).
I using 2 dedicated Windows x64 with tomcat 6 (Solr shard ...
2
votes
1answer
51 views
How can I backup a MongoDB GridFS database the easiest way?
Like the title says, I have a MongoDB GridFS database with a whole range of file types (e.g., text, pdf, xls), and I want to backup this database the easiest way.
Replication is not an option. ...
2
votes
0answers
130 views
How to perform incremental tar backup of FAT filesystem
I use tar --listed-incremental=... to perform incremental backups on my computer, and for the most part it works like a charm. However, it doesn't seem to play well with my old FAT partition. It ...
2
votes
5answers
1k views
Backup MySQL database
I have a MySQL Database of about 1.7GB. I usually back it up using mysqldump and this takes about 2 minutes. However, I would like to know the answers to the following questions:
1) Does mysqldump ...
1
vote
1answer
949 views
Mysql incremental Backup
Can anyone help me to take incremental backup in mysql.
i had some idea about that but it is not cleared in my mind ,
please give solutions in steps
Thanks in advance!!!
Riddhi
0
votes
1answer
37 views
What encryption algorithm preserves file differences?
I would like to encrypt a file with most secure algorithm that also meets the following requirement.
Let's say we have a text file that has 100 Bytes and we encrypt it.
Now we change 1 byte in ...
0
votes
0answers
203 views
How to reduce Backup Exec 12.5 Incremental size for Exchange 2003 server
For some reason, the incremental backup for our Exchange 2003 server is the same size as the regular one. The regular one is setup as Full - Using archive bit (reset archive bit) and the incremental ...
0
votes
0answers
405 views
Is there Incremental/Differential backup using MySQL [closed]
Is there Incremental/Differential backup using MySQL. If this is available, in which MySQL version this option is present and how to use this option.
Thanks In Advance.
0
votes
2answers
1k views
writing perl script to take mysql incremental backup with mysqldump
I am dealing with an incremental backup solution for a mysql database in centos. I need to write a perl script to take incremental backup. then i will run this script by using crontabs. I am a bit ...
0
votes
3answers
115 views
Cryptographically Secure Backup
Until now I have been doing backups with rsync from my computer to an external drive. The backup data is made of tens of thousands of small files and hundreds of big ones (Maildir email messages and ...
0
votes
2answers
102 views
incremental backup of folder in linux whilst retaining attributes/ownership
I'm trying to backup a folder (e.g) /web/sites to /backups/websites and retain attributes, etc.
cp -Rp retains the information, yet isn't incremental
rsync -va seems to be great for incremental yet ...