Ssh経由でサーバーの1つにログインすると、認証後にハングします。これは、-v
を使用したクライアントの出力です。
OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to Host1 [10.6.27.64] port 22.
debug1: Connection established.
debug1: identity file /home/user/.ssh/identity type -1
debug1: identity file /home/user/.ssh/id_rsa type 1
debug1: identity file /home/user/.ssh/id_dsa type -1
debug1: loaded 3 keys
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3
debug1: match: OpenSSH_5.3 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_4.3
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Host 'Host1' is known and matches the RSA Host key.
debug1: Found key in /home/user/.ssh/known_hosts:172
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,password
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found
debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found
debug1: Unspecified GSS failure. Minor code may provide more information
No credentials cache found
debug1: Next authentication method: publickey
debug1: Trying private key: /home/user/.ssh/identity
debug1: Offering public key: /home/user/.ssh/id_rsa
debug1: Server accepts key: pkalg ssh-rsa blen 277
debug1: read PEM private key done: type RSA
debug1: Authentication succeeded (publickey).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
debug1: Sending environment.
debug1: Sending env LANG = C
debug1: Sending env LC_ALL = C
Last login: Wed May 21 10:24:14 2014 from Host2
This machine has been configured with kickstart
Host1 in bcinf17 in bay 3 in rack D10-Mid
そして、サーバーの/var/log/secure
にこれが表示されます(幸い、まだセッションを開いています)。
May 21 10:27:31 Host1 sshd[12387]: Accepted publickey for user from 1.1.11.239 port 34135 ssh2
May 21 10:27:31 Host1 sshd[12387]: pam_unix(sshd:session): session opened for user user by (uid=0)
ですから、明らかに問題はありません。クライアントとサーバーは通信できるようです。 /var/log/messages
には何もありません。
十分なディスク容量。一部のパスはマウントされていますが(ホーム領域を含む)、まだアクティブなシェルはそれらにアクセスできます。
他のサーバーに接続できます。これだけに問題があります。 sshd
を再起動してみました。 sshd
の構成ファイルはデフォルトのように見えるため、そこには何もありません。私の知る限り、最近は何も変わっていません。
コマンド(ssh Host1 -t bash
、または-t vi
)を実行しようとすると、ハングしたように見えるので、ログインスクリプトとは何の関係もないと考えてください。
同じ場所や他の場所にある他のホストから、またはWindowsからPuTTYを介してログインし、キーの代わりにパスワードを使用してログインすることも試みました。
他にどこを見るべきか、何を試すべきかわからない。
これは64ビットのRHEL 6.4サーバーです。
SSH認証の直後にハングを引き起こす可能性のあるものがいくつかあります。
ただし、これらのほとんどは他の症状も伴います(SSH-authの直後のハングは、最も目に見える症状です)
~/.bashrc
_、_~/.bash_profile
_、_~/.profile
_、_~/.kshrc
_などfork()
された子プロセスが多すぎて、負荷( 1/5/15スコア )が高すぎます。ssh -o GSSAPIAuthentication=no user@Host
を使用する場合、直接接続しますか?
その場合、システムがGSSAPIメソッドを決定するある時点でハングしている可能性があります。私の場合、1つのホストだけがこれを実行したため、そのホストの~/.ssh/config
でGSSAPIを無効にしました。
Host badHostName
GSSAPIAuthentication no
これを http://germanrumm.eu/fixing-ssh-login-delay-how-to-disable-gssapi-with-mic-on-ubuntu-linux/ から学びましたが、原因。
さらに別の問題の原因は、ssh-agentを待機しているsshクライアントである可能性があります(もちろん、ssh-agentを使用するように構成されているものすべて)。 sshを実行するとanywhereがスタックする
debug1:SSH2_MSG_NEWKEYSを受信しました
次にps auxw | grep askpass
とそのダイアログ(複数可)。
PS:これはむしろnotここの犯人ですが、これまでのところ、関連性の高いquestionsをググっていません。