How to configure SVN (Subversion) Server on Fedora Core with Apache22 under SElinux
Posted on 27th May 2008 by azharIf you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!
Install latest version of subversion on Fedora Core by RPM, Binary or using yum tool.
I will use yum tool to install Apache22 on fedora core 5.
yum install httpd
Install updated version of subversion on fedora core 5.
yum install subversion
After successfull installation of subversion on Fedora Core Please install mod_dav_svn.
yum install mod_dav_svn
Create a main directory on the root for subversion so that all repositories can be made under this main directory.
mkdir /subversion
Create a directory that can be shared in Apache so that we can access the repostiry with http://localhost rather than svn://localhost
mkdir /subversion/public
Now change the Owner and group of the above newly created directories to apache:apache
chown –R apache:apache /subversion
chown –R apache:apache /subversion/public
Now create the repository using under given command;
svnadmin create /subversion/public/reponame
Now we have to add the newly created repository in apache’s configuration file so that we can access the repository using http://localhost/reponame
open the under given subversion configuration file from the under given path;
vi /etc/httpd/conf.d/subversion.conf
Popularity: 22% [?]
More Interesting Articles
   
