Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

AuthType Digest configuration failed - , reason: verification of user

Status
Not open for further replies.

Balaji99

Programmer
Feb 22, 2010
1
0
0
AP
Hi,

I had installed Apache 2.2 version (httpd-2.2.14) in AIX version 5.3. Installation, configuration was succesful and could even set the Basic Auth type. All the steps provided to set the password using htdigest command and created /usr/bin/apache/passwd/digest file.

But when I change the config to Digest Type, the apache sends error.

The config is as follows -

<Directory "/usr/bin/apache/htdocs">

AuthType Digest
AuthName "Private"
AuthUserFile /usr/bin/apache/passwd/digest
Require valid-user

#AuthType Basic
#AuthName "Restricted Resource"
#AuthUserFile /usr/bin/apache/passwd/passwords
#Require user bala

</Directory>

Error is -
access to / failed, reason: verification of user id '<null>' not configured

Please let me know how to rectify the error in Digest Auth type alone.
 
If I'm not mistaken, you need the following line inserted after AuthUserFile /usr/bin/apache/passwd/digest:

AuthGroupFile /dev/null

Newposter
&quot;Good judgment comes from experience. Experience comes from bad judgment.&quot;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top