mathz.nu Asterisk Blacklist Hobby webbhotell

2012/09/17

Backup and Restore a Subversion Repository

Filed under: Backup,Server — Mathz @ 13:24

Sometimes, you just have to do serious maintenance to a server, like install a new instance of your operating system from scratch with a new partition layout. If this server happens to be your Subversion server, you need to backup your repository and restore it once you’re done with the maintenance. Or maybe you just want to move your repository from one server to another. Here’s how to do it. The commands below need to be performed on the SVN server by a user who has write access to the repository (in theory any SVN admnistrator).

First, here’s how back up the repository to a compressed file:

$ svnadmin dump /path/to/repo | gzip > backup.gz

And how to restore it:

$ gunzip -c backup.gz | svnadmin load /path/to/repo

Those commands are meant for UNIX or Linux so you will have to adapt them if you are running Windows. It shouldn’t be too difficult to do so, especially if you are using Cygwin.

No Comments »

No comments yet.

RSS feed for comments on this post. TrackBack URL

Leave a comment

Powered by WordPress