Active Directory ドメインに参加する2023/03/08 |
Windows の Active Directory ドメインに参加します。
ローカルネットワーク内に Active Directory Domain Service が稼働していることが前提です。
当例では、以下のような Active Directory ドメイン環境で設定します。
|
|||||||||||
[1] | 必要なパッケージをインストールしておきます。 |
[root@dlp ~]# dnf -y install realmd sssd oddjob oddjob-mkhomedir adcli samba-common-tools krb5-workstation
|
[2] | Active Directory ドメインに参加します。 |
# 参照する DNS を AD に変更しておく [root@dlp ~]# nmcli connection modify enp1s0 ipv4.dns 10.0.0.100 [root@dlp ~]# nmcli connection up enp1s0 Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/2) # Active Directory ドメインを discover する [root@dlp ~]# realm discover SRV.WORLD srv.world type: kerberos realm-name: SRV.WORLD domain-name: srv.world configured: no server-software: active-directory client-software: sssd required-package: oddjob required-package: oddjob-mkhomedir required-package: sssd required-package: adcli required-package: samba-common-tools # Active Directory ドメインに join する [root@dlp ~]# realm join SRV.WORLD Password for Administrator: # AD の Administrator パスワード
# 任意の AD ユーザーの情報が取得できるか確認 [root@dlp ~]# id Serverworld@srv.world uid=1259201103(serverworld@srv.world) gid=1259200513(domain users@srv.world) groups=1259200513(domain users@srv.world),1259200512(domain admins@srv.world),1259200572(denied rodc password replication group@srv.world) # 任意の AD ユーザーでログイン可能か確認 [root@dlp ~]# logout AlmaLinux 9.1 (Lime Lynx) Kernel 5.14.0-162.6.1.el9_1.x86_64 on an x86_64 Activate the web console with: systemctl enable --now cockpit.socket dlp login: Serverworld@srv.world Password: [serverworld@srv.world@dlp ~]$ # ログインできた |
[3] | AD ユーザーを指定する際に、ドメイン名を省略したい場合は、以下のように設定します。 |
[root@dlp ~]#
vi /etc/sssd/sssd.conf # 16行目 : 変更 use_fully_qualified_names = False
[root@dlp ~]#
[root@dlp ~]# systemctl restart sssd id Administrator uid=1259200500(administrator) gid=1259200513(domain users) groups=1259200513(domain users),1259200572(denied rodc password replication group),1259200512(domain admins),1259200518(schema admins),1259200520(group policy creator owners),1259200519(enterprise admins) |
[4] |
AD ユーザーの UID/GID はランダムに割り当てられますが、固定したい場合は、以下のように設定します。
事前に、こちらを参考に Active Directory 側で
AD ユーザーに UNIX 属性を追加しておきます。
次に AlmaLinux 側で SSSD の設定を変更します。
当例ではリンク先の通り、[uidNumber/gidNumber] 属性を追加して進めます。 |
[root@dlp ~]#
vi /etc/sssd/sssd.conf # 17行目 : 変更 ldap_id_mapping = False
# 最終行に追記 ldap_user_uid_number = uidNumber ldap_user_gid_number = gidNumber id serverworld uid=2000(serverworld) gid=100(users) groups=100(users) |