You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Cédric Girard <ce...@jouy.inra.fr> on 2004/04/13 18:01:54 UTC

Authentification don't work

Hi,

I have juste set up a SVN serveur, with svnserve to keep it simple.
Wile the repository is world writable, all work (import, commit, update, 
... cool) but if anon-user is not allowed to do anything I just receive 
a 'no access allowed to this repository' answer. It never ask me password.
I bet it is a stupid question often asked, but I need this repository.

here is the conf file
[general]
anon-access = none
auth-access = write

[users]
password-db = /home/svn/passwords
realm = bracersvn

/home/svn/passwords contain
[users]
user = password

Thanks in advance

Regards
Cédric

-- 
Cédric GIRARD
BRACER Biotech (INRA)
Bât. 232 - Physiologie Animale
Domaine de Vilvert
78352 JOUY EN JOSAS CEDEX
Tel: 01 34 65 23 29
Fax: 01 34 65 23 60
email: cedric.girard@jouy.inra.fr


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: Authentification don't work

Posted by Ben Collins-Sussman <su...@collab.net>.
On Tue, 2004-04-13 at 13:01, Cédric Girard wrote:
> Hi,
> 
> I have juste set up a SVN serveur, with svnserve to keep it simple.
> Wile the repository is world writable, all work (import, commit, update, 
> ... cool) but if anon-user is not allowed to do anything I just receive 
> a 'no access allowed to this repository' answer. It never ask me password.
> I bet it is a stupid question often asked, but I need this repository.
> 
> here is the conf file
> [general]
> anon-access = none
> auth-access = write
> 
> [users]
> password-db = /home/svn/passwords
> realm = bracersvn

This is wrong.  There is no [users] section in the conf file.  Just a
[general] section:

[general]
anon-access = none
auth-access = write
password-db = /home/svn/passwords
realm = bracersvn



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org