ssh-copy-idが機能しない

ssh-copy-idが機能しない

この問題が議論されたことがわかっています。他の投稿を見つけても同じ問題を抱えている質問が見つかりません。助けていただければ幸いです。

私はSSHを通してユーザーA @ホストA到着ユーザーB @ホストB。どちらのホストも同じファイルシステムを使用します。すなわち、ユーザAのホームディレクトリは、ホストAとホストBで同一であり、ユーザBのホームディレクトリと同じである。

これで、パスワードなしでA @ AからB @ Bにアクセスできるように、Bの.sshディレクトリにキーを保存したいので、userA @ hostAで次のことを行いました。

ssh-keygen -t rsa -b 2048
ssh-copy-id -i ~/.ssh/id_rsa userB@hostB
echo $? ### output was 0, meaning it was successfull    
ssh -v userB@hostB   

次の出力を取得します。

OpenSSH_5.3p1, OpenSSL 1.0.1e-fips 11 Feb 2013
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to hostB [100.100.100.100] port 22.
debug1: Connection established.
debug1: identity file /home/userA/.ssh/identity type -1
debug1: identity file /home/userA/.ssh/identity-cert type -1
debug1: identity file /home/userA/.ssh/id_rsa type 1
debug1: identity file /home/userA/.ssh/id_rsa-cert type -1
debug1: identity file /home/userA/.ssh/id_dsa type -1
debug1: identity file /home/userA/.ssh/id_dsa-cert type -1
debug1: identity file /home/userA/.ssh/id_ecdsa type -1
debug1: identity file /home/userA/.ssh/id_ecdsa-cert type -1
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_5.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 'hostB' is known and matches the RSA host key.
debug1: Found key in /home/userA/.ssh/known_hosts:3
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-keyex
debug1: No valid Key exchange context
debug1: Next authentication method: gssapi-with-mic
debug1: Unspecified GSS failure.  Minor code may provide more information
Credentials cache file '/tmp/krb5cc_524' not found

debug1: Unspecified GSS failure.  Minor code may provide more information
Credentials cache file '/tmp/krb5cc_524' not found

debug1: Unspecified GSS failure.  Minor code may provide more information


debug1: Unspecified GSS failure.  Minor code may provide more information
Credentials cache file '/tmp/krb5cc_524' not found

debug1: Next authentication method: publickey
debug1: Trying private key: /home/userA/.ssh/identity
debug1: Offering public key: /home/userA/.ssh/id_rsa
debug1: Authentications that can continue: publickey,gssapi-keyex,gssapi-with-mic,password
debug1: Trying private key: /home/userA/.ssh/id_dsa
debug1: Trying private key: /home/userA/.ssh/id_ecdsa
debug1: Next authentication method: password
userB@hostB's password:

userA@hostBにはパスワードなしでアクセスできましたが、userBにはアクセスできませんでした。

どんなアイデアがありますか?

ありがとうございます!

PS。追加情報:

ホストAバージョン:

Linux バージョン 2.6.32-573.7.1.el6.x86_64([Eメール保護]) (gcc バージョン 4.4.7 20120313 (Red Hat 4.4.7-16) (GCC) ) #1 SMP Tue Sep 22 22:00:00 UTC 2015

ホストBバージョン:

Linux バージョン 2.6.32-358.el6.x86_64([Eメール保護])(gccバージョン4.4.7 20120313(Red Hat 4.4.7-3)(GCC))#1 SMP 2013年1月29日火曜日11:47:41 EST

userB@hostB から (Jakuje が意味するようです) ディレクトリとファイルにアクセスします。

~: drwxrwx---  
~/.ssh: drwx------  
~/.ssh/authorized_keys: -rw-------

ベストアンサー1

おすすめ記事