I'm new to svn and I'd like to know what are common methods of backing up repositories in a windows environment?
|
11
|
|
|
|
|
|
You could use something like (Linux):
Since Windows does not support GZip it is just:
|
||||||||
|
|
|
The idea of having subversion backup is cool, but I would not do this on a live webserver. I'd rather create a backup of a whole site using a site backup service or just FTP everything over using scheduled backup. Either way SVN is not a a |
||
|
|
|
|
http://wandisco.com/subversion/backup/ WANdisco Subversion HA (Backup) |
||
|
|
|
|
For the daily and full backup solution just use the scripts of svn backup from here |
||
|
|
|
|
Here is a perl script that will:
Script source and more details about the rational for this type of backup. |
|||
|
|
|
|
as others have said, hot-backup.py from the Subversion team has some nice features over just plain I run a scheduled task on a python script that spiders for all my repositories on the machine, and uses hotbackup to keep several days worth of hotcopies (paranoid of corruption) and an |
||
|
|
|
|
I use svnsync, which sets up a remote server as a mirror/slave. We had a server go down two weeks ago, and I was able to switch the slave into primary position quite easily (only had to reset the UUID on the slave repository to the original). Another benefit is that the sync can be run by a middle-man, rather than as a task on either server. I've had a client to two VPNs sync a repository between them. |
||||
|
|
|
We use svnadmin hotcopy, e.g.:
As per the book:
You can of course ZIP (preferably 7-Zip) the backup copy. IMHO It's the most straightforward of the backup options: in case of disaster there's little to do other than unzip it back into position. |
||||||
|
|
|
If you are using the FSFS repository format (the default), then you can copy the repository itself to make a backup. With the older BerkleyDB system, the repository is not platform independent and you would generally want to use svnadmin dump. The svnbook documentation topic for backup recommends the |
||
|
|
|
|
There's a hotbackup.py script available on the Subversion web site that's quite handy for automating backups. http://subversion.tigris.org/tools_contrib.html#hot_backup_py |
||
|
|
|
|
|
||
|
|
|
|
I like to just copy the entire repo directory to my backup location. That way, if something happens, you can just copy the directory back and be ready to go immediately. Just make sure to preserve permissions, if needed. Usually, this is only a concern on Linux machines. |
||
|
