View Single Post
  #57 (permalink)  
Old 05-02-2010, 04:09 PM
todd_dsm todd_dsm is offline
Loyal Member
 
Posts: 89
Default CentOS 5.x PAM stack

When I had this problem, I believe it was either in /var/log/messages or audit.log. It's been some time so I'm not sure. But you can grep it out or watch it...

Code:
$ grep -i pam /opt/zimbra/log/messages
$ grep -i pam /opt/zimbra/log/audit/audit.log

# Or just watch it while you test:
watch grep -i pam /opt/zimbra/log/messages
If you watch it in term1 you can test in term2 and see if you can trigger the log entry. If it's reproducible you can at least be sure that you've found 1 condition. Of course there may be other conditions you are not aware of, then - more testing.

In my case, to gen the right pam config file (on CentOS) you run authconfig and it configures your pam stack, /etc/ldap.conf, and /etc/nsswitch.conf. These files are absolutely critical to the proper functioning of your system.
NOTE: I am using zimbra in conjunction with samba. So you can omit the --enablemkhomedir if not using samba.

Code:
$ authconfig --test > /tmp/before.out
$ authconfig --enableldap --enableldapauth --disablenis --enablecache \
           --ldapserver=${LDAPSERVER} --ldapbasedn=${LDAPBASEDN} \
           --enablemkhomedir \
           --updateall

# LDAPSERVER=host.domain.tld
# LDAPBASEDN=dc=domain,dc=tld
# This will work for a simple install but you should also do your own research. I am not an expert.
$ authconfig --test > /tmp/after.out
Anyway, this generates a system-wide pam stack:

Code:
$ cat /etc/pam.d/system-auth-ac
#%PAM-1.0
# This file is auto-generated.
# User changes will be destroyed the next time authconfig is run.
auth        required      pam_env.so
auth        sufficient    pam_unix.so nullok try_first_pass
auth        requisite     pam_succeed_if.so uid >= 500 quiet
auth        sufficient    pam_ldap.so use_first_pass
auth        required      pam_deny.so

account     required      pam_unix.so broken_shadow
account     sufficient    pam_succeed_if.so uid < 500 quiet
account     [default=bad success=ok user_unknown=ignore] pam_ldap.so
account     required      pam_permit.so

password    requisite     pam_cracklib.so try_first_pass retry=3
password    sufficient    pam_unix.so md5 shadow nullok try_first_pass use_authtok
password    sufficient    pam_ldap.so use_authtok
password    required      pam_deny.so

session     optional      pam_keyinit.so revoke
session     required      pam_limits.so
session     optional      pam_mkhomedir.so
session     [success=1 default=ignore] pam_succeed_if.so service in crond quiet use_uid
session     required      pam_unix.so
session     optional      pam_ldap.so
It looks like you're using RHEL so this should be enough to get your system-auth-ac file in a good spot

grep/watch the logs again and run the same tests you did at the beginning. You should see the errors are no longer populating your logs. Then, check your status in the Admin UI once again. Then you should be in business.

Cheers mate!

Thanks in advance,
todd_dsm

Don't forget to Vote for this RFE:
RFE: A place To Display the contents of 'My Documents'
Reasoning: It's new, bold, and cool.

Last edited by todd_dsm; 10-08-2010 at 09:25 AM..
Reply With Quote