Installing Subversion version 1.6.11 on Centos 6.4
Subversion is a free open source version control system Purpose of Subversion is used to manage files and directories and also controls the changes made by all users at particular point of time . Subversion would also allows us to recover the older files and directories and also we can compare the older files with the existing files Install SVN, version 1.6.11 [root@SERVER /]# yum install -y subversion mod_dav_svn To check the SVN version [root@SERVER /]# svn –version Configuration of SVN [root@SERVER /]# vi /etc/httpd/conf.d/subversion.conf Add the following lines on Subversion.conf at line 4 <Location /svn> DAV svn SVNParentPath /var/www/svn AuthType Basic AuthName "Subversion repositories" AuthUserFile /etc/svn-users Require valid-user </Location> It should look like this. LoadModule dav_svn_module modules/mod_dav_svn.so LoadModule authz_svn_module modules/mod_authz_svn.so ...