HTTP SVN Auth with Redmine.pm says: 'user xxx not found' while exists.
Added by Kevin van der Burgt almost 12 years ago
Hi,
I've have a problem with my Redmine installation. Everytime when i try to login using https://svn.****.**/test the apache error say's this:
[Sun Feb 24 15:29:01 2013] [error] [client ..***.***] user test not found: /test
I'm 100% sure that the user exists, and that the user is a developer of a project with repository.
Im struggling with this problem for day's and i can't get it to work..
This is my Apache Config:
@<VirtualHost *:443> ServerName ***.****.** PerlLoadModule Apache::Redmine <Location /> DAV svn SVNParentPath /var/svn Order deny,allow Deny from all Satisfy any LimitXMLRequestBody 0 SVNPathAuthz off PerlAccessHandler Apache::Authn::Redmine::access_handler PerlAuthenHandler Apache::Authn::Redmine::authen_handler AuthType Basic AuthName "SVN Repository" AuthUserFile /dev/null <Limit GET PROPFIND OPTIONS REPORT> Require valid-user Allow from ****.******.** Satisfy any </Limit> <LimitExcept GET PROPFIND OPTIONS REPORT> Require valid-user </LimitExcept> RedmineDSN "DBI:mysql:database=redmine_production;host=localhost" RedmineDbUser "redmine" RedmineDbPass "************" SSLRequireSSL </Location> SSLEngine on SSLProtocol all -SSLv2 SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM SSLCertificateFile ************* SSLCertificateKeyFile ******** SSLCertificateChainFile ********** SSLCACertificateFile ********** SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown </VirtualHost>
@
Replies (1)
RE: HTTP SVN Auth with Redmine.pm says: 'user xxx not found' while exists. - Added by Pavel Potcheptsov almost 12 years ago
I have same config that additionally has:
LoadModule dav_svn_module modules/mod_dav_svn.so
and doesn't has:
AuthUserFile /dev/null
and SSL related.
are you able to open Repository tab in Redmine?