Just notice i didnt do any backup on my svn server. To ensure continuity, I need to teach my colig on how to backup the svn server. To make things more simple, i’ve written a script to backup my svn server everynight. But here, i’ll show u the basic of how to backup svn server.
To backup svn server, follow the steps below:
Advertisements
- First, login to your svn server
- Enter the command below to backup your svn repo:-
svnadmin dump /path/to/reponame > /path/to/reponame.svndump
- If your svn repo is too large, you can use gzip to compress it during the backup. Try the command below:-
svnadmin dump /path/to/reponame | gzip > reponame.svndump.gz
- To extract gzip file, use the command below:-
gunzip reponame.svndump.gz
Related posts:
CPAN Error: make test had returned bad status, won't install without force
How to install flash player in Ubuntu
How to enable email notification in Adium?
How to password protect folder in Mac OS X
How to show hidden files in Finder - Mac OS X
How to disable dashboard in Mac OS X
How to set SVN_EDITOR environment variable
Linux - How to check memory usage
Share this with your friends:-
Hi,
Thank you for this tuto. I have a question about the svn. How can I locate the path of the svn if I want to do the backup?
Thank you if you can help me.
Hi rupali, u can refer to this post
http://www.techiecorner.com/175/how-to-migrate-svn-repository/
reinstall server is similar to migration.
just follow the steps and it should help u to solve the problem.
Hi,
I want to format my svn server for that i want to take backup of my all repositories & when i build my svn server again i want to restore that repositories on the svn server again.please help me in this problem