LDAP + sudo == sysadmin happiness
Using the latest release of sudo, I was finally able to get sudo working with LDAP enabled on RHEL/CentOS 4. Previously, I had no trouble getting sudo working with LDAP on RHEL3 and RHEL5. However, when I added '--with-ldap' to the compile options on RHEL4, it completely broke sudo, preventing it from authenticating anything.
This is a huge win for us at work, because it makes handling sudo configurations significantly easier. Normally, you have to store the configuration in /etc/sudoers on every single box. With this, you can store your sudo configuration in LDAP, and have all of the sudo rules in a single centralized location. Update it once, and all configured machines will then pull it.
I've become a big fan of LDAP, and with sudo supporting it, I think that anyone using LDAP and not storing sudo information in LDAP is crazy.
This is a huge win for us at work, because it makes handling sudo configurations significantly easier. Normally, you have to store the configuration in /etc/sudoers on every single box. With this, you can store your sudo configuration in LDAP, and have all of the sudo rules in a single centralized location. Update it once, and all configured machines will then pull it.
I've become a big fan of LDAP, and with sudo supporting it, I think that anyone using LDAP and not storing sudo information in LDAP is crazy.

I'm currently not the best of friends with LDAP, since it's making me look bad on a cluster. >:< Caches results for too long - ironically, some of them membership in groups for sudo - and I can't figure out why.
nscd?
If it's running, you can try shutting it off so all lookups will be repeated (increases traffic hitting LDAP server), or you can also potentially clear the local cache of a specific table, like nscd -i group or nscd -i passwd.
Re: nscd?
Re: nscd?
Re: nscd?
Re: nscd?
Re: nscd?
User additions take effect almost immediately, so it's just groups... very weird.
LDAP Confusion.
A few things that helped me with it were:
mapped to LDAP.
Re: LDAP Confusion.
Do you have an example of what an LDAP database looks like?
So far, whenever anyone's suggested LDAP for me, I've ran across something intersecting my current knowledge, so I've never taken the time to learn it.
Granted, that's what we do in the Solaris environments here already anyway.