Are you using Apache "Digest" authentication?
The AuthName statement in httpd.conf must exactly same with the realm of
password file(AuthDigestFile).
For example, if you use AuthName "REALM_1" in httpd.conf, httpd.conf will
looks like
<Location /svn>
DAV svn
SVNPath C:/repository
AuthType Digest
AuthName "REALM_1"
AuthDigestFile C:/digest.txt
Require valid-user
</Location>
You should use the same realm in command-line to add a user.
htdigest digest.txt REALM_1 user1
The digest.txt will looks like
user1:REAML_1:0123456789abcdef0123456789abcdef
Kao Shiang-Yuan
2008/6/15 vichy <vichy.kuo_at_gmail.com>:
> Dear all:
> I add user and their passwords in the passwd file.
> I also set their authority in authz file.
> But each time I try to checkout the source code it will always ask me the
> realm password.
> I type the user and password in the passwd file, but each time it still
> tell
> me that I key in the wrong data.
> Where can I find the password about realm and what the realm is used for?
> Appreciate your kind help,
> vichy
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
> For additional commands, e-mail: users-help_at_subversion.tigris.org
>
>
Received on 2008-06-16 05:59:18 CEST