Category: Change Management

  • How to copy Subversion repositories to another server

    Ensure you have a working Subversion installation with Apache installed on your system. On the source machine, dump each repository: > svnadmin dump /path/to/repository > repository-name.dmp Copy repository-name.dmp to the target server. Load the repository into the new server: > cd /path/to/new-repository > svnadmin create repository-name > svnadmin load repository-name < repository-name.dmp Reassign apache permissions:…

  • How to install Subversion with Apache HTTPD

    Ensure you have Apache installed on your system. Ensure you have mod_dav_svn installed: > yum -y update mod_dav_svn Install ssl support to enable https: > yum install mod_ssl Edit /etc/httpd/conf.d/subversion.conf and append the following lines to the end of your config file: <Location /svn> DAV svn SVNParentPath /var/svn AuthType Basic AuthName “Subversion repository” AuthUserFile /etc/svn-auth-file…