aboutsummaryrefslogtreecommitdiff
path: root/en_US.ISO8859-1/articles/ldap-auth
diff options
context:
space:
mode:
authorBenedict Reuschling <bcr@FreeBSD.org>2015-07-25 16:21:53 +0000
committerBenedict Reuschling <bcr@FreeBSD.org>2015-07-25 16:21:53 +0000
commitac8327d8ca3cf51c159862f37b1a1b4eeea8105c (patch)
treee8e7a83997e8cba34243815620e66dbebf6fdff5 /en_US.ISO8859-1/articles/ldap-auth
parentc84041efd48060d3e893f38727ed1aabe119988f (diff)
downloaddoc-ac8327d8ca3cf51c159862f37b1a1b4eeea8105c.tar.gz
doc-ac8327d8ca3cf51c159862f37b1a1b4eeea8105c.zip
The LDAP client configuration part now contains help for users that can not
log in because of a missing shell. When shells like bash are on different paths (/bin/bash vs. /usr/local/bin/bash), entries need to be created in /etc/shells and proper symlinks set to make this work. Reviewed by: wblock Approved by: wblock Committed at: Essen FreeBSD Hackathon Differential Revision: https://reviews.freebsd.org/D3194
Notes
Notes: svn path=/head/; revision=47080
Diffstat (limited to 'en_US.ISO8859-1/articles/ldap-auth')
-rw-r--r--en_US.ISO8859-1/articles/ldap-auth/article.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/en_US.ISO8859-1/articles/ldap-auth/article.xml b/en_US.ISO8859-1/articles/ldap-auth/article.xml
index d523b15b2c..d1957adb4f 100644
--- a/en_US.ISO8859-1/articles/ldap-auth/article.xml
+++ b/en_US.ISO8859-1/articles/ldap-auth/article.xml
@@ -448,6 +448,34 @@ cn: tuser</programlisting>
correctly, then it will allow access. Otherwise it will
fail.</para>
+ <para>Users whose shell is not in
+ <filename>/etc/shells</filename> will not be able to log in.
+ This is particularly important when
+ <application>Bash</application> is set as the user shell on
+ the LDAP server. <application>Bash</application> is not
+ included with a default installation of &os;. When installed
+ from a package or port, it is located at
+ <filename>/usr/local/bin/bash</filename>. Verify that the
+ path to the shell on the server is set correctly:</para>
+
+ <screen>&prompt.user; <userinput>getent passwd <replaceable>username</replaceable></userinput></screen>
+
+ <para>There are two choices when the output shows
+ <literal>/bin/bash</literal> in the last column. The first is
+ to change the user's entry on the LDAP server to
+ <filename>/usr/local/bin/bash</filename>. The second option
+ is to create a symlink on the LDAP client computer so
+ <application>Bash</application> is found at the correct
+ location:</para>
+
+ <screen>&prompt.root; <userinput>ln -s /usr/local/bin/bash /bin/bash</userinput></screen>
+
+ <para>Make sure that <filename>/etc/shells</filename> contains
+ entries for both <literal>/usr/local/bin/bash</literal> and
+ <literal>/bin/bash</literal>. The user will then be able to
+ log in to the system with <application>Bash</application> as
+ their shell.</para>
+
<sect3 xml:id="client-auth-pam">
<title>PAM</title>