I have a Sparc solaris 9 server with apache 2.0.49 and
mod_auth_pam-2.0-1.1.1 installed. The NIS service is working fine and
I'm able to login on telnet using the NIS server. But when I try to
authenticate in httpd using mod_auth_pam I get the following error in
/usr/local/apache2/logs/error_log <br>
 <br>
-------- <br>
[Sun Apr 02 15:20:02 2006] [error] [client 12.3.4] PAM: user 'jabba'  - invalid account: Dlopen failure <br>
-------- <br>
 <br>
My httpd.conf has the following directives: <br>
-------- <br>
LoadModule auth_pam_module modules/mod_auth_pam.so <br>
LoadModule auth_sys_group_module modules/mod_auth_sys_group.so <br>
 <br>
<Directory "/usr/local/apache2/htdocs/nis/"> <br>
 <br>
AuthPAM_Enabled on <br>
AuthType Basic <br>
AuthName "YP login" <br>
Require valid-user <br>
 <br>
</Directory> <br>
-------- <br>
 <br>
My /etc/pam.conf has the following directives: <br>
-------- <br>
httpd auth required pam_unix.so.1 debug  <br>
httpd account required pam_unix.so.1  <br>
-------- <br>
 <br>
I have struggled with this for 3 hours now. What am I missing? <br>
 <br>
THANKS IN ADVANCE.