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:
How to extract .deb file in Linux / Mac
How to format external hard disk for Mac and Windows
How to convert doc to pdf in Mac OS X
How to loop thru directory files in bash shell
How to create shortcut in Mac OS X
How to send email using different profile in Apple Mail
Mac: Change print screen file format to jpg
CPAN Error: make test had returned bad status, won't install without force
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