[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: question about realm

From: <asusmbtw_at_gmail.com>
Date: Mon, 16 Jun 2008 11:58:42 +0800

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

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.