CentOS 6
Sponsored Link

LDAPクライアントの設定2015/03/17

 
LDAP サーバーのユーザーアカウント情報を共有できるように LDAP クライアントとしての設定をします。
[1] OpenLDAP クライアントをインストールして設定します。
[root@www ~]#
yum -y install openldap-clients nss-pam-ldapd
# ldapserver=(自身のLDAPサーバーのホスト名またはIPアドレス)

# ldapbasedn="dc=(自身のドメイン名)"

[root@www ~]#
authconfig --enableldap \
--enableldapauth \
--ldapserver=dlp.srv.world \
--ldapbasedn="dc=srv,dc=world" \
--enablemkhomedir \
--update

Starting nslcd:                                            [  OK  ]

[root@www ~]#
logout
CentOS release 6.8 (Final)
Kernel 2.6.32-642.3.1.el6.x86_64 on an x86_64
www.srv.world login:
redhat
   
# LDAPユーザー

Password:    
# パスワード

Creating directory '/home/redhat'.
[redhat@www ~]$    
# ログインできた
[redhat@www ~]$    
# パスワード変更は通常通り

Changing password for user redhat.
Enter login(LDAP) password:    
# 現在のパスワード

New password:    
# 新しいパスワード

Retype new password:
LDAP password information changed for redhat
passwd: all authentication tokens updated successfully.
関連コンテンツ