Ubuntu 20.04
Sponsored Link

OpenLDAP : LDAP サーバーの設定2020/05/11

 
各サーバー間でユーザーのアカウント情報を共有できるように LDAP サーバーを構築します。
[1] OpenLDAP をインストールします。
root@dlp:~#
apt -y install slapd ldap-utils
# インストール中、LDAP サーバーの管理者パスワードの設定を求められる

 +--------------------------| Configuring slapd |-------------------------+
 | Please enter the password for the admin entry in your LDAP directory.  |
 |                                                                        |
 | Administrator password:                                                |
 |                                                                        |
 | ********______________________________________________________________ |
 |                                                                        |
 |                                 <Ok>                                   |
 |                                                                        |
 +------------------------------------------------------------------------+

# 設定確認

root@dlp:~#
slapcat

dn: dc=srv,dc=world
objectClass: top
objectClass: dcObject
objectClass: organization
o: srv.world
dc: srv
structuralObjectClass: organization
entryUUID: 102bac62-27a4-103a-853d-bb5d839899a7
creatorsName: cn=admin,dc=srv,dc=world
createTimestamp: 20200511072332Z
entryCSN: 20200511072332.363512Z#000000#000#000000
modifiersName: cn=admin,dc=srv,dc=world
modifyTimestamp: 20200511072332Z

dn: cn=admin,dc=srv,dc=world
objectClass: simpleSecurityObject
objectClass: organizationalRole
cn: admin
description: LDAP administrator
userPassword:: e1NTSEF9ekcwNmk4Ny9OZjdEL2RGUlhDcHRWV2hxaVZiaGo0b3c=
structuralObjectClass: organizationalRole
entryUUID: 10303c6e-27a4-103a-853e-bb5d839899a7
creatorsName: cn=admin,dc=srv,dc=world
createTimestamp: 20200511072332Z
entryCSN: 20200511072332.393446Z#000000#000#000000
modifiersName: cn=admin,dc=srv,dc=world
modifyTimestamp: 20200511072332Z
[2] ユーザーとグループ用の組織単位を新規登録しておきます。
root@dlp:~#
vi base.ldif
# 新規作成

# [dc=srv,dc=world] の箇所は自身の suffix に置き換え

dn: ou=people,dc=srv,dc=world
objectClass: organizationalUnit
ou: people

dn: ou=groups,dc=srv,dc=world
objectClass: organizationalUnit
ou: groups 

root@dlp:~#
ldapadd -x -D cn=admin,dc=srv,dc=world -W -f base.ldif

Enter LDAP Password:    
# 管理者パスワード(インストール中に設定したもの)

adding new entry "ou=people,dc=srv,dc=world"

adding new entry "ou=groups,dc=srv,dc=world"
関連コンテンツ