Kein Zugriff auf SVN auf meinem CentOS-Heimserver

0

Ich habe kürzlich Subversion auf meinem CentOS-Home-Server installiert. Ich habe die Anweisungen hier befolgt:

http://wiki.centos.org/HowTos/Subversion

Ich kann jedoch nicht über Eclipse auf das Repository zugreifen (ich habe zuvor das Subversion-Plugin für Eclipse installiert und kann problemlos arbeiten).

Meine subversion.conf in /etc/httpd/conf.d/ sieht folgendermaßen aus:

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 /repos>
   DAV svn
   SVNPath /var/www/svn/repos

   # Limit write permission to list of valid users.
   <LimitExcept GET PROPFIND OPTIONS REPORT>
      # Require SSL connection for password protection.
      # SSLRequireSSL

      AuthType Basic
      AuthName "Subversion repos"
      AuthUserFile /etc/svn-auth-conf
      Require valid-user
   </LimitExcept>
</Location>

und dann habe ich Apache neu gestartet.

Ich bekomme jedoch eine Fehlermeldung, wenn ich versuche, von Eclipse oder von auf den Repository-Speicherort zuzugreifen http: //xx.xx.xx.xx/repos im Browser

Jede Hilfe geschätzt.

Grüße.

Stephen
quelle

Antworten:

0

SVNPath /var/www/svn/repos bedeutet du haben bereits erstellt Repository im /var/www/svn/repos ", nicht im Unterverzeichnis von Repos

Versuchen Sie, Repo von CLI-svn-client ( svn ls URL ) - Bei Problemen erhalten Sie weitere nützliche Fehlermeldungen

Lazy Badger
quelle