RHEL8/CentOS8/Oracle Linux 8で用意されているsambaパッケージを使ってActive Direcotryサーバを立てることができるか確認してみた。
公式資料:[Red Hat Enterprise Linux 8 にさまざまな種類のサーバーをデプロイするためのガイド]-[第3章 SAMBA をサーバーとして使用]
まずは、パッケージのインストール
1 | # yum install samba |
2 | <略> |
3 | # rpm -qa|grep samba |
4 | samba-libs-4.12.3-12.el8.3.x86_64 |
5 | samba-common-4.12.3-12.el8.3.noarch |
6 | samba-client-libs-4.12.3-12.el8.3.x86_64 |
7 | samba-common-tools-4.12.3-12.el8.3.x86_64 |
8 | samba-common-libs-4.12.3-12.el8.3.x86_64 |
9 | samba-4.12.3-12.el8.3.x86_64 |
10 | # |
で、RHEL8/CentOS8での特徴の1つ、「samba-toolが無い」問題。
じゃぁ、どうするの?と前出のマニュアル見てみれば手動で /etc/samba/smb.conf を編集している。
初期状態でどんな設定になるのか
1 | [root@samba48 ~]# ls -l /etc/samba/ |
2 | 合計 20 |
3 | -rw-r--r--. 1 root root 20 8月 18 05:50 lmhosts |
4 | -rw-r--r--. 1 root root 706 8月 18 05:50 smb.conf |
5 | -rw-r--r--. 1 root root 11327 8月 18 05:50 smb.conf.example |
6 | [root@samba48 ~]# cat /etc/samba/smb.conf |
7 | # See smb.conf.example for a more detailed config file or |
8 | # read the smb.conf manpage. |
9 | # Run 'testparm' to verify the config is correct after |
10 | # you modified it. |
11 |
12 | [global] |
13 | workgroup = SAMBA |
14 | security = user |
15 |
16 | passdb backend = tdbsam |
17 |
18 | printing = cups |
19 | printcap name = cups |
20 | load printers = yes |
21 | cups options = raw |
22 |
23 | [homes] |
24 | comment = Home Directories |
25 | valid users = %S, %D%w%S |
26 | browseable = No |
27 | read only = No |
28 | inherit acls = Yes |
29 |
30 | [printers] |
31 | comment = All Printers |
32 | path = /var/tmp |
33 | printable = Yes |
34 | create mask = 0600 |
35 | browseable = No |
36 |
37 | [print$] |
38 | comment = Printer Drivers |
39 | path = /var/lib/samba/drivers |
40 | write list = @printadmin root |
41 | force group = @printadmin |
42 | create mask = 0664 |
43 | directory mask = 0775 |
44 | [root@samba48 ~]# |
参考まで、samba-toolsで作った場合のsmb.confは下記の様になっている。
1 | # Global parameters |
2 | [global] |
3 | dns forwarder = 上DNSサーバIPアドレス |
4 | netbios name = samba48 |
5 | realm = testad2.local |
6 | server role = active directory domain controller |
7 | workgroup = TESTAD2 |
8 | idmap_ldb:use rfc2307 = yes |
9 | allow dns updates = nonsecure |
10 | server services = s3fs, rpc, nbt, wrepl, ldap, cldap, kdc, drepl, winbindd, ntp_signd, kcc, dnsupdate dns |
11 | ldap server require strong auth = no |
12 |
13 | [netlogon] |
14 | path = /usr/local/samba/var/locks/sysvol/testad2.local/scripts |
15 | read only = No |
16 |
17 | [sysvol] |
18 | path = /usr/local/samba/var/locks/sysvol |
19 | read only = No |
で、[第3章 SAMBA をサーバーとして使用]を見ると、「スタンドアローンサーバとして単独WORKGROUPをたてる場合」と「既存Active Directory環境にメンバーサーバとして参加する場合」しか用意されておらず、「新規Active Directory環境を作る場合」というものが無い。
samba-toolコマンドを使用しない場合のActive Directory構築手順も見当たらないため、RHEL8/CentOS8が標準で用意しているsambaパッケージを使用しての構築はできないようだ。
CentOS8の場合「yum search samba」でパッケージ検索すると、「centos-releae-samba41?」といった追加レポジトリが出てくる。
1 | [root@samba48 ~]# yum search samba |
2 | メタデータの期限切れの最終確認: 0:30:30 時間前の 2021年01月21日 09時31分03秒 に実施しました。 |
3 | ==================================== 名前 完全一致: samba ==================================== |
4 | samba.x86_64 : Server and Client software to interoperate with Windows machines |
5 | ================================== 名前 & 概要 一致: samba =================================== |
6 | centos-release-samba411.noarch : Samba 4.11 packages from the CentOS Storage SIG repository |
7 | centos-release-samba412.noarch : Samba 4.12 packages from the CentOS Storage SIG repository |
8 | centos-release-samba413.noarch : Samba 4.13 packages from the CentOS Storage SIG repository |
9 | ipa-client-samba.x86_64 : Tools to configure Samba on IPA client |
10 | pcp-pmda-samba.x86_64 : Performance Co-Pilot (PCP) metrics for Samba |
11 | python3-samba.i686 : Samba Python3 libraries |
12 | python3-samba.x86_64 : Samba Python3 libraries |
13 | python3-samba-test.x86_64 : Samba Python libraries |
14 | samba-client.x86_64 : Samba client programs |
15 | samba-client-libs.x86_64 : Samba client libraries |
16 | samba-client-libs.i686 : Samba client libraries |
17 | samba-common.noarch : Files used by both Samba servers and clients |
18 | samba-common-libs.x86_64 : Libraries used by both Samba servers and clients |
19 | samba-common-tools.x86_64 : Tools for Samba servers and clients |
20 | samba-krb5-printing.x86_64 : Samba CUPS backend for printing with Kerberos |
21 | samba-libs.x86_64 : Samba libraries |
22 | samba-libs.i686 : Samba libraries |
23 | samba-test.x86_64 : Testing tools for Samba servers and clients |
24 | samba-test-libs.x86_64 : Libraries need by the testing tools for Samba servers and clients |
25 | samba-winbind.x86_64 : Samba winbind |
26 | samba-winbind-clients.x86_64 : Samba winbind clients |
27 | samba-winbind-krb5-locator.x86_64 : Samba winbind krb5 locator |
28 | samba-winbind-modules.i686 : Samba winbind modules |
29 | samba-winbind-modules.x86_64 : Samba winbind modules |
30 | ====================================== 名前 一致: samba ====================================== |
31 | samba-pidl.noarch : Perl IDL compiler |
32 | ====================================== 概要 一致: samba ====================================== |
33 | ctdb.x86_64 : A Clustered Database based on Samba's Trivial Database (TDB) |
34 | [root@samba48 ~]# |
centos-release-samba413をインストールしてみる
1 | [root@samba48 ~]# yum install centos-release-samba413 |
2 | メタデータの期限切れの最終確認: 1:32:19 時間前の 2021年01月21日 09時31分03秒 に実施しました。 |
3 | 依存関係が解決しました。 |
4 | ============================================================================================== |
5 | パッケージ Arch バージョン リポジトリー サイズ |
6 | ============================================================================================== |
7 | インストール: |
8 | centos-release-samba413 noarch 1.0-1.el8 extras 8.8 k |
9 | 依存関係のインストール: |
10 | centos-release-storage-common noarch 2-2.el8 extras 9.4 k |
11 |
12 | トランザクションの概要 |
13 | ============================================================================================== |
14 | インストール 2 パッケージ |
15 |
16 | ダウンロードサイズの合計: 18 k |
17 | インストール済みのサイズ: 2.0 k |
18 | これでよろしいですか? [y/N]: y |
19 | パッケージのダウンロード: |
20 | (1/2): centos-release-samba413-1.0-1.el8.noarch.rpm 231 kB/s | 8.8 kB 00:00 |
21 | (2/2): centos-release-storage-common-2-2.el8.noarch.rpm 252 kB/s | 9.4 kB 00:00 |
22 | ---------------------------------------------------------------------------------------------- |
23 | 合計 31 kB/s | 18 kB 00:00 |
24 | トランザクションの確認を実行中 |
25 | トランザクションの確認に成功しました。 |
26 | トランザクションのテストを実行中 |
27 | トランザクションのテストに成功しました。 |
28 | トランザクションを実行中 |
29 | 準備 : 1/1 |
30 | インストール : centos-release-storage-common-2-2.el8.noarch 1/2 |
31 | インストール : centos-release-samba413-1.0-1.el8.noarch 2/2 |
32 | scriptletの実行中: centos-release-samba413-1.0-1.el8.noarch 2/2 |
33 | 検証 : centos-release-samba413-1.0-1.el8.noarch 1/2 |
34 | 検証 : centos-release-storage-common-2-2.el8.noarch 2/2 |
35 |
36 | インストール済み: |
37 | centos-release-samba413-1.0-1.el8.noarch centos-release-storage-common-2-2.el8.noarch |
38 |
39 | 完了しました! |
40 | [root@samba48 ~]# |
そうすると、インストールされていたsmba 4.12がアップデートできるようになりました
1 | [root@samba48 ~]# yum check-update |
2 | メタデータの期限切れの最終確認: 0:02:42 時間前の 2021年01月21日 11時03分56秒 に実施しました。 |
3 |
4 | libwbclient.x86_64 4.13.3-1.el8 centos-samba413 |
5 | samba.x86_64 4.13.3-1.el8 centos-samba413 |
6 | samba-client-libs.x86_64 4.13.3-1.el8 centos-samba413 |
7 | samba-common.noarch 4.13.3-1.el8 centos-samba413 |
8 | samba-common-libs.x86_64 4.13.3-1.el8 centos-samba413 |
9 | samba-common-tools.x86_64 4.13.3-1.el8 centos-samba413 |
10 | samba-libs.x86_64 4.13.3-1.el8 centos-samba413 |
11 | [root@samba48 ~]# |
yum updateすると、「/sbin/ldconfig: /lib64/libsmbldap.so.2 はシンボリックリンクではありません」って出てるけど、これは大丈夫なんだろうか….
1 | [root@samba48 ~]# yum update -y |
2 | メタデータの期限切れの最終確認: 0:03:30 時間前の 2021年01月21日 11時03分56秒 に実施しました。 |
3 | 依存関係が解決しました。 |
4 | ============================================================================================== |
5 | パッケージ Arch バージョン リポジトリー サイズ |
6 | ============================================================================================== |
7 | アップグレード: |
8 | libwbclient x86_64 4.13.3-1.el8 centos-samba413 37 k |
9 | samba x86_64 4.13.3-1.el8 centos-samba413 757 k |
10 | samba-client-libs x86_64 4.13.3-1.el8 centos-samba413 5.5 M |
11 | samba-common noarch 4.13.3-1.el8 centos-samba413 135 k |
12 | samba-common-libs x86_64 4.13.3-1.el8 centos-samba413 124 k |
13 | samba-common-tools x86_64 4.13.3-1.el8 centos-samba413 416 k |
14 | samba-libs x86_64 4.13.3-1.el8 centos-samba413 110 k |
15 | 依存関係のインストール: |
16 | checkpolicy x86_64 2.9-1.el8 baseos 348 k |
17 | glusterfs x86_64 6.0-37.2.el8 baseos 662 k |
18 | glusterfs-api x86_64 6.0-37.2.el8 appstream 95 k |
19 | glusterfs-client-xlators x86_64 6.0-37.2.el8 baseos 870 k |
20 | glusterfs-libs x86_64 6.0-37.2.el8 baseos 413 k |
21 | python3-audit x86_64 3.0-0.17.20191104git1c2f876.el8 baseos 86 k |
22 | python3-libsemanage x86_64 2.9-3.el8 baseos 127 k |
23 | python3-policycoreutils noarch 2.9-9.el8 baseos 2.2 M |
24 | python3-setools x86_64 4.3.0-2.el8 baseos 626 k |
25 | samba-vfs-glusterfs x86_64 4.13.3-1.el8 centos-samba413 40 k |
26 |
27 | トランザクションの概要 |
28 | ============================================================================================== |
29 | インストール 10 パッケージ |
30 | アップグレード 7 パッケージ |
31 |
32 | ダウンロードサイズの合計: 12 M |
33 | パッケージのダウンロード: |
34 | (1/17): glusterfs-api-6.0-37.2.el8.x86_64.rpm 1.2 MB/s | 95 kB 00:00 |
35 | (2/17): checkpolicy-2.9-1.el8.x86_64.rpm 1.4 MB/s | 348 kB 00:00 |
36 | (3/17): glusterfs-6.0-37.2.el8.x86_64.rpm 2.4 MB/s | 662 kB 00:00 |
37 | (4/17): python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64. 3.0 MB/s | 86 kB 00:00 |
38 | (5/17): python3-libsemanage-2.9-3.el8.x86_64.rpm 3.2 MB/s | 127 kB 00:00 |
39 | (6/17): glusterfs-libs-6.0-37.2.el8.x86_64.rpm 3.4 MB/s | 413 kB 00:00 |
40 | (7/17): glusterfs-client-xlators-6.0-37.2.el8.x86_64.rpm 2.5 MB/s | 870 kB 00:00 |
41 | (8/17): python3-setools-4.3.0-2.el8.x86_64.rpm 4.4 MB/s | 626 kB 00:00 |
42 | (9/17): samba-vfs-glusterfs-4.13.3-1.el8.x86_64.rpm 253 kB/s | 40 kB 00:00 |
43 | (10/17): libwbclient-4.13.3-1.el8.x86_64.rpm 379 kB/s | 37 kB 00:00 |
44 | (11/17): samba-4.13.3-1.el8.x86_64.rpm 2.4 MB/s | 757 kB 00:00 |
45 | (12/17): python3-policycoreutils-2.9-9.el8.noarch.rpm 3.9 MB/s | 2.2 MB 00:00 |
46 | (13/17): samba-common-4.13.3-1.el8.noarch.rpm 2.6 MB/s | 135 kB 00:00 |
47 | (14/17): samba-common-libs-4.13.3-1.el8.x86_64.rpm 1.4 MB/s | 124 kB 00:00 |
48 | (15/17): samba-common-tools-4.13.3-1.el8.x86_64.rpm 3.2 MB/s | 416 kB 00:00 |
49 | (16/17): samba-libs-4.13.3-1.el8.x86_64.rpm 1.4 MB/s | 110 kB 00:00 |
50 | (17/17): samba-client-libs-4.13.3-1.el8.x86_64.rpm 5.0 MB/s | 5.5 MB 00:01 |
51 | ---------------------------------------------------------------------------------------------- |
52 | 合計 4.2 MB/s | 12 MB 00:02 |
53 | 警告: /var/cache/dnf/centos-samba413-5ae787790677bc21/packages/samba-vfs-glusterfs-4.13.3-1.el8.x86_64.rpm: ヘッダー V4 RSA/SHA1 Signature、鍵 ID e451e5b5: NOKEY |
54 | CentOS-8 - Samba 4.13 1.0 MB/s | 1.0 kB 00:00 |
55 | GPG 鍵 0xE451E5B5 をインポート中: |
56 | Userid : "CentOS Storage SIG (http://wiki.centos.org/SpecialInterestGroup/Storage) <security@centos.org>" |
57 | Fingerprint: 7412 9C0B 173B 071A 3775 951A D4A2 E50B E451 E5B5 |
58 | From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Storage |
59 | 鍵のインポートに成功しました |
60 | トランザクションの確認を実行中 |
61 | トランザクションの確認に成功しました。 |
62 | トランザクションのテストを実行中 |
63 | トランザクションのテストに成功しました。 |
64 | トランザクションを実行中 |
65 | 準備 : 1/1 |
66 | scriptletの実行中: samba-common-4.13.3-1.el8.noarch 1/1 |
67 | scriptletの実行中: samba-common-4.13.3-1.el8.noarch 1/24 |
68 | アップグレード : samba-common-4.13.3-1.el8.noarch 1/24 |
69 | scriptletの実行中: samba-common-4.13.3-1.el8.noarch 1/24 |
70 | アップグレード : samba-common-libs-4.13.3-1.el8.x86_64 2/24 |
71 | scriptletの実行中: samba-common-libs-4.13.3-1.el8.x86_64 2/24 |
72 | アップグレード : samba-client-libs-4.13.3-1.el8.x86_64 3/24 |
73 | scriptletの実行中: samba-client-libs-4.13.3-1.el8.x86_64 3/24 |
74 | /sbin/ldconfig: /lib64/libsmbldap.so.2 はシンボリックリンクではありません |
75 |
76 |
77 | アップグレード : libwbclient-4.13.3-1.el8.x86_64 4/24 |
78 | アップグレード : samba-libs-4.13.3-1.el8.x86_64 5/24 |
79 | scriptletの実行中: samba-libs-4.13.3-1.el8.x86_64 5/24 |
80 | /sbin/ldconfig: /lib64/libsmbldap.so.2 はシンボリックリンクではありません |
81 |
82 |
83 | インストール : glusterfs-libs-6.0-37.2.el8.x86_64 6/24 |
84 | scriptletの実行中: glusterfs-libs-6.0-37.2.el8.x86_64 6/24 |
85 | /sbin/ldconfig: /lib64/libsmbldap.so.2 はシンボリックリンクではありません |
86 |
87 |
88 | scriptletの実行中: glusterfs-6.0-37.2.el8.x86_64 7/24 |
89 | インストール : glusterfs-6.0-37.2.el8.x86_64 7/24 |
90 | scriptletの実行中: glusterfs-6.0-37.2.el8.x86_64 7/24 |
91 | /sbin/ldconfig: /lib64/libsmbldap.so.2 はシンボリックリンクではありません |
92 |
93 |
94 | インストール : glusterfs-client-xlators-6.0-37.2.el8.x86_64 8/24 |
95 | インストール : glusterfs-api-6.0-37.2.el8.x86_64 9/24 |
96 | scriptletの実行中: glusterfs-api-6.0-37.2.el8.x86_64 9/24 |
97 | /sbin/ldconfig: /lib64/libsmbldap.so.2 はシンボリックリンクではありません |
98 |
99 |
100 | アップグレード : samba-common-tools-4.13.3-1.el8.x86_64 10/24 |
101 | インストール : python3-setools-4.3.0-2.el8.x86_64 11/24 |
102 | インストール : python3-libsemanage-2.9-3.el8.x86_64 12/24 |
103 | インストール : python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64 13/24 |
104 | インストール : checkpolicy-2.9-1.el8.x86_64 14/24 |
105 | インストール : python3-policycoreutils-2.9-9.el8.noarch 15/24 |
106 | アップグレード : samba-4.13.3-1.el8.x86_64 16/24 |
107 | scriptletの実行中: samba-4.13.3-1.el8.x86_64 16/24 |
108 | インストール : samba-vfs-glusterfs-4.13.3-1.el8.x86_64 17/24 |
109 | scriptletの実行中: samba-4.12.3-12.el8.3.x86_64 18/24 |
110 | 整理 : samba-4.12.3-12.el8.3.x86_64 18/24 |
111 | scriptletの実行中: samba-4.12.3-12.el8.3.x86_64 18/24 |
112 | 整理 : samba-common-tools-4.12.3-12.el8.3.x86_64 19/24 |
113 | 整理 : samba-libs-4.12.3-12.el8.3.x86_64 20/24 |
114 | 整理 : samba-common-libs-4.12.3-12.el8.3.x86_64 21/24 |
115 | 整理 : samba-client-libs-4.12.3-12.el8.3.x86_64 22/24 |
116 | scriptletの実行中: libwbclient-4.12.3-12.el8.3.x86_64 23/24 |
117 | 整理 : libwbclient-4.12.3-12.el8.3.x86_64 23/24 |
118 | 整理 : samba-common-4.12.3-12.el8.3.noarch 24/24 |
119 | scriptletの実行中: libwbclient-4.13.3-1.el8.x86_64 24/24 |
120 | scriptletの実行中: samba-vfs-glusterfs-4.13.3-1.el8.x86_64 24/24 |
121 | scriptletの実行中: samba-common-4.12.3-12.el8.3.noarch 24/24 |
122 | 検証 : glusterfs-api-6.0-37.2.el8.x86_64 1/24 |
123 | 検証 : checkpolicy-2.9-1.el8.x86_64 2/24 |
124 | 検証 : glusterfs-6.0-37.2.el8.x86_64 3/24 |
125 | 検証 : glusterfs-client-xlators-6.0-37.2.el8.x86_64 4/24 |
126 | 検証 : glusterfs-libs-6.0-37.2.el8.x86_64 5/24 |
127 | 検証 : python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64 6/24 |
128 | 検証 : python3-libsemanage-2.9-3.el8.x86_64 7/24 |
129 | 検証 : python3-policycoreutils-2.9-9.el8.noarch 8/24 |
130 | 検証 : python3-setools-4.3.0-2.el8.x86_64 9/24 |
131 | 検証 : samba-vfs-glusterfs-4.13.3-1.el8.x86_64 10/24 |
132 | 検証 : libwbclient-4.13.3-1.el8.x86_64 11/24 |
133 | 検証 : libwbclient-4.12.3-12.el8.3.x86_64 12/24 |
134 | 検証 : samba-4.13.3-1.el8.x86_64 13/24 |
135 | 検証 : samba-4.12.3-12.el8.3.x86_64 14/24 |
136 | 検証 : samba-client-libs-4.13.3-1.el8.x86_64 15/24 |
137 | 検証 : samba-client-libs-4.12.3-12.el8.3.x86_64 16/24 |
138 | 検証 : samba-common-4.13.3-1.el8.noarch 17/24 |
139 | 検証 : samba-common-4.12.3-12.el8.3.noarch 18/24 |
140 | 検証 : samba-common-libs-4.13.3-1.el8.x86_64 19/24 |
141 | 検証 : samba-common-libs-4.12.3-12.el8.3.x86_64 20/24 |
142 | 検証 : samba-common-tools-4.13.3-1.el8.x86_64 21/24 |
143 | 検証 : samba-common-tools-4.12.3-12.el8.3.x86_64 22/24 |
144 | 検証 : samba-libs-4.13.3-1.el8.x86_64 23/24 |
145 | 検証 : samba-libs-4.12.3-12.el8.3.x86_64 24/24 |
146 |
147 | アップグレード済み: |
148 | libwbclient-4.13.3-1.el8.x86_64 samba-4.13.3-1.el8.x86_64 |
149 | samba-client-libs-4.13.3-1.el8.x86_64 samba-common-4.13.3-1.el8.noarch |
150 | samba-common-libs-4.13.3-1.el8.x86_64 samba-common-tools-4.13.3-1.el8.x86_64 |
151 | samba-libs-4.13.3-1.el8.x86_64 |
152 |
153 | インストール済み: |
154 | checkpolicy-2.9-1.el8.x86_64 glusterfs-6.0-37.2.el8.x86_64 |
155 | glusterfs-api-6.0-37.2.el8.x86_64 glusterfs-client-xlators-6.0-37.2.el8.x86_64 |
156 | glusterfs-libs-6.0-37.2.el8.x86_64 python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64 |
157 | python3-libsemanage-2.9-3.el8.x86_64 python3-policycoreutils-2.9-9.el8.noarch |
158 | python3-setools-4.3.0-2.el8.x86_64 samba-vfs-glusterfs-4.13.3-1.el8.x86_64 |
159 |
160 | 完了しました! |
161 | [root@samba48 ~]# |
まぁ、アップデート完了してもsamba-tool はいませんでしたけどね
1 | [root@samba48 ~]# which samba-tool |
2 | /usr/bin/which: no samba-tool in (/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin) |
3 | [root@samba48 ~]# |
というわけで、おとなしくsambaをソースからコンパイルするしかなさそうです。