hi friends..

Discussion in 'Installation/Configuration' started by pandiyan, Dec 31, 2014.

  1. pandiyan

    pandiyan New Member

    I have been trying to install svn on my centos 6.6

    all the steps are ran succesfully...but i cant get the output that is

    when i enter the repository url in browser it will display

    404 not found...plsease help me friends...and

    my "/etc/httpd/conf.d/subversion.conf" file contain
    Code:
    LoadModule dav_svn_module  modules/mod_dav_svn.so
    LoadModule authz_svn_module  modules/mod_authz_svn.so
    
    #
    # Example configuration to enable HTTP access for a directory
    # containing Subversion repositories, "/var/www/svn".  Each repository
    # must be both:
    #
    #  a) readable and writable by the 'apache' user, and
    #
    #  b) labelled with the 'httpd_sys_content_t' context if using
    #  SELinux
    #
    
    #
    # To create a new repository "http://localhost/repos/stuff" using
    # this configuration, run as root:
    #
    #  # cd /var/www/svn
    #  # svnadmin create stuff   
    #  # chown -R apache.apache stuff
    #  # chcon -R -t httpd_sys_content_t stuff
    #
    
    <Location /svn>
      DAV svn
      SVNParentPath /var/www/svn
      <LimitExcept GET PROPFIND OPTIONS REPORT>
      AuthType Basic
      AuthName "SVN authentication required"
      AuthUserFile /etc/svn-users
      Require valid-user
      </LimitExcept>
    </Location>
    CustomLog logs/svn_logfile "%t %u %{SVN-ACTION}e" env=SVN-ACTION
    
    
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Which error message do you get in the apache error.log?
     
  3. pandiyan

    pandiyan New Member

    when i enter the repository URL that is "http://10.0.0.251/svn/"

    it'll display
    Not Found
    The requested URL /svn was not found on this server.

    Apache/2.2.15 (CentOS) Server at 10.0.0.251 Port 80

    i dont knw what is the error and where is the error...i am new for linux also....what to do pls help me
     
  4. kwickcut

    kwickcut Member HowtoForge Supporter

    till was asking what does the error log say for apache it can be found in the following

    /var/log/httpd/error_log

    this will help find any issues
     

Share This Page