I'm new to svn and I'd like to know what are common methods of backing up repositories in a windows environment?
|
You could use something like (Linux):
Since Windows does not support GZip it is just:
|
|||||||||||||||||||||
|
|
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. |
|||||||||||||||||
|
|
Here is a Perl script that will:
The script:
Script source and more details about the rational for this type of backup. |
|||||
|
|
There's a hotbackup.py script available on the Subversion web site that's quite handy for automating backups. http://svn.apache.org/repos/asf/subversion/trunk/tools/backup/hot-backup.py.in |
|||||||
|
|
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. |
|||||||||
|
|
||||
|
|
Detailed reference in the SVNBook: "Repository data migration using svnadmin" |
||||
|
|
|
svnbackup over at Google Code, a .NET console application. |
|||||
|
|
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. |
|||||||
|
|
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 are 2 main methods to backup a svn server, first is hotcopy that will create a copy of your repository files, the main problem with this approach is that it saves data about the underlying file system, so you may have some difficulties trying to repostore this kind of backup in another svn server kind or another machine. there is another type of backup called dump, this backup wont save any information of the underlying file system and its potable to any kind of SVN server based in tigiris.org subversion. about the backup tool you can use the svnadmin tool(it is able to do hotcopy and dump) from the command prompt, this console resides in the same directory where your svn server lives or you can google for svn backup tools. my recommendation is that you do both kinds of backups and get them out of the office to your email acount, amazon s3 service, ftp, or azure services, that way you will have a securityy backup without having to host the svn server somewhere out of your office. |
|||
|
|
This is the Batch File i have running that performs my Backups |
|||
|
|
|
For the daily and full backup solution just use the SVN backup scripts here. |
||||
|
|
|
Basically it's safe to copy the repository folder if the svn server is stopped. (source: https://groups.google.com/forum/?fromgroups#!topic/visualsvn/i_55khUBrys%5B1-25%5D ) So if you're allowed to stop the server, do it and just copy the repository, either with some script or a backup tool. Cobian Backup fits here nicely as it can stop and start services automatically, and it can do incremental backups so you're only backing up parts of repository that have changed recently (useful if the repository is large and you're backing up to remote location). Example:
|
||||
|
|
|
I have compiled the steps I followed for the purpose of taking a backup of the remote SVN repository of my project.
This takes time and says that it is fetching the logs from repository. It creates a set of files inside To update this local repository with the latest set of changes from the remote one, just run the previous command from time to time. Now you can play with your local repository ( The only problem with this approach is that the local repository is created with a revision increments by the actual revision in the remote repository. As someone wrote:
But, this was OK for me as I only wanted some backup of the remote repository time to time, nothing else. Verification: To verify, use the SVN client with the local repository like this:
This command then goes to checkout the latest revision from the local repository. At the end it says To verify that svk also brought all the history, the SVN checkout was run with various older revisions using At the end, zip the directory |
||||
|
|
|
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 |
|||
|
|
