ドメインに参加しているのにWinbind起動エラー
複数の質問投稿で大変恐縮です。
CentOS7にSambaを入れ、ファイルサーバーとして運用したいと考えています。
同じくSambaで構築したドメインに「net ads join -U administrator」のコマンドで参加できました。
その後で、winbind をstartさせようとしましたが、下記エラーで起動できません。
(centos70がファイルサーバーのコンピューター名、test.comがドメイン名です。)
winbind.service - Samba Winbind Daemon
Loaded: loaded (/usr/lib/systemd/system/winbind.service; disabled; vendor preset: disabled)
Active: failed (Result: exit-code) since 水 2019-07-17 22:16:22 JST; 7min ago
Docs: man:winbindd(8)
man:samba(7)
man:smb.conf(5)
Process: 30514 ExecStart=/usr/sbin/winbindd --foreground --no-process-group $WINBINDOPTIONS (code=exited, status=1/FAILURE)
Main PID: 30514 (code=exited, status=1/FAILURE)
7月 17 22:16:22 centos70.test.com winbindd[30514]: [2019/07/17 22:16:22.756390, 0] ../source3/winbindd/winbindd_cache.c:31...cache)
7月 17 22:16:22 centos70.test.com winbindd[30514]: initialize_winbindd_cache: clearing cache and re-creating with version number 2
7月 17 22:16:22 centos70.test.com winbindd[30514]: [2019/07/17 22:16:22.758942, 0] ../source3/winbindd/winbindd_util.c:126..._list)
7月 17 22:16:22 centos70.test.com winbindd[30514]: Could not fetch our SID - did we join?
7月 17 22:16:22 centos70.test.com winbindd[30514]: [2019/07/17 22:16:22.758970, 0] ../source3/winbindd/winbindd.c:1360(win...dlers)
7月 17 22:16:22 centos70.test.com winbindd[30514]: unable to initialize domain list
7月 17 22:16:22 centos70.test.com systemd[1]: winbind.service: main process exited, code=exited, status=1/FAILURE
7月 17 22:16:22 centos70.test.com systemd[1]: Failed to start Samba Winbind Daemon.
7月 17 22:16:22 centos70.test.com systemd[1]: Unit winbind.service entered failed state.
7月 17 22:16:22 centos70.test.com systemd[1]: winbind.service failed.
Hint: Some lines were ellipsized, use -l to show in full.
このためか、smbも下記エラーで起動できません。
● smb.service - Samba SMB Daemon
Loaded: loaded (/usr/lib/systemd/system/smb.service; disabled; vendor preset: disabled)
Active: failed (Result: exit-code) since 水 2019-07-17 22:23:44 JST; 13min ago
Docs: man:smbd(8)
man:samba(7)
man:smb.conf(5)
Process: 31073 ExecStart=/usr/sbin/smbd --foreground --no-process-group $SMBDOPTIONS (code=exited, status=255)
Main PID: 31073 (code=exited, status=255)
7月 17 22:23:43 centos70.test.com systemd[1]: Starting Samba SMB Daemon...
7月 17 22:23:44 centos70.test.com smbd[31073]: [2019/07/17 22:23:44.050879, 0] ../source3/auth/auth_util.c:1372(make_new_s...guest)
7月 17 22:23:44 centos70.test.com smbd[31073]: create_local_token failed: NT_STATUS_NO_MEMORY
7月 17 22:23:44 centos70.test.com smbd[31073]: [2019/07/17 22:23:44.050927, 0] ../source3/smbd/server.c:1993(main)
7月 17 22:23:44 centos70.test.com smbd[31073]: ERROR: failed to setup guest info.
7月 17 22:23:44 centos70.test.com systemd[1]: smb.service: main process exited, code=exited, status=255/n/a
7月 17 22:23:44 centos70.test.com systemd[1]: Failed to start Samba SMB Daemon.
7月 17 22:23:44 centos70.test.com systemd[1]: Unit smb.service entered failed state.
7月 17 22:23:44 centos70.test.com systemd[1]: smb.service failed.
Hint: Some lines were ellipsized, use -l to show in full.
nmbサービスは起動します。
smb.confの内容は下記の通りです。
[global]
dos charset = CP932
unix charset = UTF-8
wins support = yes
workgroup = TEST
# password server = 192.168.12.9
realm = TEST.COM
security = ads
# idmap config * : range = 16777216-33554431
idmap config TEST:backend = rid
idmap config TEST:range = 20000-29999
template shell = /bin/bash
kerberos method = secrets only
winbind use default domain = true
winbind offline logon = false
log level = 1
[shared]
path = /mnt/strage
writeable = yes
comment = test.com ShareFolder
vfs objects = acl_xattr
acl_xattr:ignore system acls = yes
Winbindとsmbを起動するにはどうすればよろしいでしょうか。
何卒ご教示いただけますと幸いです。よろしくお願い申し上げます。