Hi..I use Fedora 12 with mod_auth_pam-1.1.1-9.fc12.i686<br><br>I'm configuring auth_pam module to make authentication by system. This is my configuration:<br><br>conf.d/auth.pam.conf<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>I test the configuration through the subversion apache module. Subversion in apache httpd is configure so:<br><br>conf.d/subversion.conf<br><br><Location /repos><br>
   DAV svn<br>   SVNParentPath /var/www/svn<br><br>   # Limit write permission to list of valid users.<br>   <LimitExcept GET PROPFIND OPTIONS REPORT><br>      # Require SSL connection for password protection.<br>      SSLRequireSSL<br>
<br>      AuthType Basic<br>      AuthName "Authorization Realm"<br>      AuthPAM_Enabled On<br>      Require valid-user<br>   </LimitExcept><br></Location><br><br><br>when I try to connect through svn/http simply I have this error in maillog file:<br>
<br>[Fri Mar 18 13:58:50 2011] [error] [client 'ip_address'] PAM: user 'my_user' - not authenticated: System error<br><br><br>what I miss?<br><br>