web-dev-qa-db-ja.com

応答しないsshサーバーを回復する

postgresデータベース(正常に応答している)を備えたマシンには、sshサービスとnagiosnrpeサービスがあります。

Pingに応答します。

Postgresは期待どおりに動作しています。 (Apacheは別のホストから接続します)

Nagiosはポート5432をチェックします(postgresは問題ありません)。

sshは接続しません(上記のように)。

Ttyを介したアクセスはsshと同じ応答を示します(画面には何も表示されません)

何ができるの?私は本番サーバーです。

サンクス。

[root@localmachne ~]# ssh remotemachine -vvvvvvvv
OpenSSH_5.3p1, OpenSSL 1.0.0-fips 29 Mar 2010
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to remotemachine [X.Y.Z.T] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: identity file /root/.ssh/identity type -1
debug3: Not a RSA1 key file /root/.ssh/id_rsa.
debug2: key_type_from_name: unknown key type '-----BEGIN'
debug3: key_read: missing keytype
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug3: key_read: missing whitespace
debug2: key_type_from_name: unknown key type '-----END'
debug3: key_read: missing keytype
debug1: identity file /root/.ssh/id_rsa type 1
debug1: identity file /root/.ssh/id_dsa type -1
1
Marc Riera

SSHキーが破損しています。パスワード認証またはコンソールに接続し、SSHキーを再生成します(またはバックアップから復元します)。

3
Nathan C