How to install Subversion on CentOS 4.5
I was assigned to find out how to install Subversion on CentOS. It is a good version control system right now, especially for development teams in any enterprises. Installing Subversion on CentOS is quite easy as follows.
-
Install packages using yum
yum install subversion mod_dav_svn
-
Configure
/etc/httpd/conf.d/subversion.conf
as you wish.LoadModule dav_svn_module modules/mod_dav_svn.so LoadModule authz_svn_module modules/mod_authz_svn.so
DAV svn SVNParentPath /var/www/svn AuthType Basic AuthName "Subversion repos" AuthUserFile /var/www/svn/htpasswd Require valid-user -
Prepare the repository.
mkdir /var/www/svn cd /var/www/svn svnadmin create myrepo chown -R apache.apache myrepo
-
Now we are ready to restart
httpd
.service httpd restart
And then we are able to import codes right now.
Tags: centos, apache, subversion
- sugree's blog
- 24095 reads
Which version of Subversion CentOS 4.5's yum gets
yes
subversion on centOS 4.5
yum
You can use
yum
to automate installation process. Make sure you enable centos repos.Yum Installing Subversion 1.1.4 on CentOS
Yum Installing Subversion 1.1.4 on CentOS
Yum Installing Subversion 1.1.4 on CentOS
Yum Installing Subversion 1.1.4 on CentOS
Auth file
Is it working with other
Post new comment