Results 1 to 4 of 4

Thread: svn help??

  1. #1
    Join Date
    May 2007
    Posts
    467
    Tokens
    0

    Default svn help??

    Okay i need some help i am trying to install svn on a server (cetnos5.2)

    so i done this

    Code:
    yum install subversion mod_dav_svn
    then i edited the file /etc/httpd/conf.d/subversion.conf

    Code:
    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

    Code:
    mkdir /home/mysite/svn/repo
    cd /home/mysite/svn/repo
    svnadmin create myrepo
    and

    Code:
    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..

  2. #2
    Join Date
    Jun 2005
    Posts
    4,795
    Tokens
    0

    Latest Awards:

    Default

    You aint even installed, configured or started the subversion server. The apache module is just a optional way of accessing your exsisting subversion server, not a method of setting one up.

  3. #3
    Join Date
    May 2007
    Posts
    467
    Tokens
    0

    Default

    Okay then can you point me in the right why to getting a svn server working as google seems to be of no help

  4. #4
    Join Date
    Aug 2008
    Location
    Australia!
    Posts
    33
    Tokens
    0

    Default

    Quote Originally Posted by Tomm View Post
    You aint even installed, configured or started the subversion server. The apache module is just a optional way of accessing your exsisting subversion server, not a method of setting one up.
    No, he has actually set it up correctly. The problem you are facing, would be a port issue. Make sure you have it open in IpTables or your Firewall.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •