ユーザーはSSHでシステムに何回か接続する必要がある

ユーザーはSSHでシステムに何回か接続する必要がある

sssdユーザーが認証に使用している複数の 64 ビット Ubuntu マシンに SSH 接続するには、複数回の試行が必要です。

ユーザーがログインできるようになるまで、次の処理が 0 ~ 6 回連続して実行されます。

ssh [email protected]
[email protected]'s password:
Connection closed by 10.13.63.101

Connection closed by 10.13.63.101エラーが発生するまで数秒かかります。

/var/log/auth.log失敗の後に成功が続くことを示すサンプルを次に示します。

sshd[7098]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=x.x.x.x  user=User
sshd[7098]: pam_sss(sshd:auth): authentication success; logname= uid=0 euid=0 tty=ssh ruser= rhost=x.x.x.x user=User
sshd[7098]: pam_sss(sshd:account): Access denied for user User: 4 (System error)
sshd[7098]: Failed password for bob from x.x.x.x port 54817 ssh2
sshd[7098]: fatal: Access denied for user bob by PAM account configuration [preauth]
sshd[7106]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=x.x.x.x  user=bob
sshd[7106]: pam_sss(sshd:auth): authentication success; logname= uid=0 euid=0 tty=ssh ruser= rhost=x.x.x.x user=bob
sshd[7106]: Accepted password for bob from x.x.x.x port 54826 ssh2
sshd[7106]: pam_unix(sshd:session): session opened for user User by (uid=0)
systemd-logind[529]: Removed session 69.
systemd-logind[529]: New session 70 of user bob.

重要な行は上記の出力の 3 行目のようです。

sshd[7098]: pam_sss(sshd:account): Access denied for user User: 4 (System error)

sssdの公式ウィキによると(https://fedorahosted.org/sssd/wiki/トラブルシューティング):

System Error is an "Unhandled Exception" during authentication. It can either be an SSSD bug or a fatal error during authentication.

パッケージはsssd最新です:

$ sudo apt-get install sssd
sssd is already the newest version.

これまでのところ、これは当社のシステムのごく一部(数十のうち約 4 つ)にのみ影響を及ぼしています。

アップデート:

sssdログは空か、数か月前のもののようです。

bob@system:/var/log/sssd$ ls -l
total 16
-rw------- 1 root root   0 Jan 26  2015 ldap_child.log
-rw------- 1 root root   0 Jan 26  2015 sssd_LDAP.log
-rw------- 1 root root   0 Aug  5 06:49 sssd.log
-rw------- 1 root root 268 Aug  4 16:24 sssd.log.1
-rw------- 1 root root 158 Jun 15 11:47 sssd.log.2.gz
-rw------- 1 root root 139 May 25 13:17 sssd.log.3.gz
-rw------- 1 root root 139 May 11 11:08 sssd.log.4.gz
-rw------- 1 root root   0 Jan 26  2015 sssd_nss.log
-rw------- 1 root root   0 Jan 26  2015 sssd_pam.log

関連情報