Fedora 22
Sponsored Link

LDAPクライアントの設定2015/05/28

 
LDAP サーバーのユーザーアカウント情報を共有できるように LDAP クライアントとしての設定をします。
[1] OpenLDAP クライアントをインストールして設定します。
[root@www ~]#
dnf -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

[root@www ~]#
vi /etc/sssd/sssd.conf
# [domain/default] セクション内に追記

ldap_tls_reqcert = allow
[root@www ~]#
systemctl restart sssd

[root@www ~]#
logout
Fedora release 22 (Twenty Two)
Kernel 4.0.4-301.fc22.x86_64 on an x86_64 (ttyS0)
www 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.
関連コンテンツ