<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.jamesdooley.us/index.php?action=history&amp;feed=atom&amp;title=Server_LDAP_Setup</id>
		<title>Server LDAP Setup - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.jamesdooley.us/index.php?action=history&amp;feed=atom&amp;title=Server_LDAP_Setup"/>
		<link rel="alternate" type="text/html" href="http://wiki.jamesdooley.us/index.php?title=Server_LDAP_Setup&amp;action=history"/>
		<updated>2026-04-10T22:00:04Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.28.0</generator>

	<entry>
		<id>http://wiki.jamesdooley.us/index.php?title=Server_LDAP_Setup&amp;diff=371&amp;oldid=prev</id>
		<title>Smsldoo: Created page with &quot;Category:Knowledge   == /etc/ldap.conf ==  &lt;syntaxhighlight lang=&quot;bash&quot;&gt; base dc=infusedsites,dc=com nss_base_passwd ou=People,dc=infusedsites,dc=com uri ldap://10.0.123.9...&quot;</title>
		<link rel="alternate" type="text/html" href="http://wiki.jamesdooley.us/index.php?title=Server_LDAP_Setup&amp;diff=371&amp;oldid=prev"/>
				<updated>2012-06-22T16:16:30Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;&lt;a href=&quot;/index.php?title=Category:Knowledge&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Category:Knowledge (page does not exist)&quot;&gt;Category:Knowledge&lt;/a&gt;   == /etc/ldap.conf ==  &amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt; base dc=infusedsites,dc=com nss_base_passwd ou=People,dc=infusedsites,dc=com uri ldap://10.0.123.9...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[Category:Knowledge]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== /etc/ldap.conf ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
base dc=infusedsites,dc=com&lt;br /&gt;
nss_base_passwd ou=People,dc=infusedsites,dc=com&lt;br /&gt;
uri ldap://10.0.123.9:389/&lt;br /&gt;
ssl no&lt;br /&gt;
tls_cacertdir /etc/openldap/cacerts&lt;br /&gt;
pam_password md5&lt;br /&gt;
sudoers_base ou=sudoers,dc=infusedsites,dc=com&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== /etc/nsswitch.conf ==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
passwd:     files ldap&lt;br /&gt;
shadow:     files ldap&lt;br /&gt;
group:      files ldap&lt;br /&gt;
sudoers:    files ldap&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
== /etc/pam.d/system-auth ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#%PAM-1.0&lt;br /&gt;
# This file is auto-generated.&lt;br /&gt;
# User changes will be destroyed the next time authconfig is run.&lt;br /&gt;
auth        required      pam_env.so&lt;br /&gt;
auth    required        pam_hulk.so&lt;br /&gt;
auth        sufficient    pam_unix.so nullok try_first_pass&lt;br /&gt;
auth        sufficient    pam_ldap.so use_first_pass&lt;br /&gt;
auth        requisite     pam_succeed_if.so uid &amp;gt;= 500 quiet&lt;br /&gt;
auth        required      pam_deny.so&lt;br /&gt;
&lt;br /&gt;
account     required      pam_unix.so&lt;br /&gt;
account     sufficient    pam_ldap.so&lt;br /&gt;
account     sufficient    pam_succeed_if.so uid &amp;lt; 500 quiet&lt;br /&gt;
account     required      pam_permit.so&lt;br /&gt;
&lt;br /&gt;
password    requisite     pam_cracklib.so try_first_pass retry=3&lt;br /&gt;
password    sufficient    pam_unix.so md5 shadow nullok try_first_pass use_authtok&lt;br /&gt;
password    sufficient    pam_ldap.so use_first_pass&lt;br /&gt;
password    required      pam_deny.so&lt;br /&gt;
&lt;br /&gt;
session     optional      pam_keyinit.so revoke&lt;br /&gt;
session     required      pam_limits.so&lt;br /&gt;
session     [success=1 default=ignore] pam_succeed_if.so service in crond quiet use_uid&lt;br /&gt;
session     optional      pam_ldap.so&lt;br /&gt;
session     optional      pam_mkhomedir.so skel=/etc/skel umask=0022&lt;br /&gt;
session     required      pam_unix.so&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== /etc/fstab ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
10.0.123.9:/home/ldap           /home/ldap              nfs     rsize=8192,wsize=8192,noatime,timeo=5,intr       0 0&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Install nfs-utils ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
yum -y install nfs-utils&lt;br /&gt;
chkconfig nfs on&lt;br /&gt;
chkconfig portmap on&lt;br /&gt;
service portmap start&lt;br /&gt;
mkdir /home/ldap&lt;br /&gt;
mount /home/ldap&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Smsldoo</name></author>	</entry>

	</feed>