SVN Error E175002 while checking out code from repository

前端 未结 8 1585
时光取名叫无心
时光取名叫无心 2021-02-18 22:50

While trying to checkout code from a repository online I got the following error:

E175002: REPORT of \'/repos/xxx/!svn/vcc/default\'

I a

8条回答
  •  梦如初夏
    2021-02-18 23:39

    I had 2 issues:

    a) The svn folder was not readable by apache user

    b) Possibly the Directory was not setup correctly

    In my example, SVN repository is installed under /home/svn.

    1) chown apache.svn -R /home/svn

    2) Modify subversion.conf:

    
        ServerName svn.xxx.com
        DocumentRoot /home/svn/
    
      
            AllowOverride None
            Order allow,deny
            Allow from all
            Options None
        
    
    SSLEngine on
    SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
    
    SSLCertificateFile /etc/pki/tls/certs/ca.crt
    SSLCertificateKeyFile /etc/pki/tls/private/ca.key
    
    
        SSLOptions +StdEnvVars
    
    
    SetEnvIf User-Agent ".*MSIE.*" \
             nokeepalive ssl-unclean-shutdown \
             downgrade-1.0 force-response-1.0
    
    CustomLog /var/log/httpd/ssl_request_log \
              "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
    
    alias /svn /home/svn
    
    
     DAV svn
     SVNPath /home/svn
     SVNListParentPath On
     AuthType Basic
     AuthName "Repositorio Subversion"
     AuthUserFile /etc/httpd/dav_svn.passwd
     Require valid-user
     allow from all
    
    
    
    

提交回复
热议问题