MyBB Community Forums

Full Version: how to install svn?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Okay i need some help i am trying to install svn on a server (cetnos5.2)

so i done this

yum install subversion mod_dav_svn

then i edited the file /etc/httpd/conf.d/subversion.conf

LoadModule dav_svn_module     modules/mod_dav_svn.so
LoadModule authz_svn_module   modules/mod_authz_svn.so
 
<Location /svn/repo>
        DAV svn
        SVNPath /home/mysite/svn/repo
        AuthType Basic
        AuthName "Test Subversion repository" 
        AuthUserFile /home/mysite/svn/repo/conf/htpasswd
        Require valid-user
        Order allow,deny
        Allow from all
    </Location>

and

mkdir /home/mysite/svn/repo
cd /home/mysite/svn/repo
svnadmin create myrepo

and

service httpd restart

but when i go to the url with http it wants me to login but it just pops back up like the user info is wrong but its matchs what i got in htpasswd and when i go to the svn:// url it says it times out and or something. what em i doing wrong..