web-dev-qa-db-ja.com

sshfs「ピアによって接続がリセットされました」

ssh -i ~/keys/id_rsa [email protected]
Enter passphrase for key '/home/avin/keys/id_rsa': 
Last login: Tue Jul 17 11:01:28 2012 from 192.168.1.240
[root@rsh_management ~]# exit
logout

大丈夫です!だが...

avin@avin-pc ~/ % sshfs -o ssh_command="ssh -i ~/keys/id_rsa" [email protected]:/ /mnt/201
[email protected]'s password: 
[email protected]'s password: 
[email protected]'s password: 
read: **Connection reset by peer**

そしてこれも

avin@avin-pc ~ % sshfs -o IdentityFile=~/keys/id_rsa [email protected]:/ /mnt/201
Enter passphrase for key '/home/avin/keys/id_rsa': 
read: **Connection reset by peer**

「ピアによって接続がリセットされる」のはなぜですか?

2
carcinogen75

サーバー上のファイル/etc/sshd_configこの行はコメントされました

# Subsystem sftp /usr/libexec/openssh/sftp-server
3
carcinogen75

これをsshfsから取得した場合

read: Connection reset by peer

多分ファイルを読み取り専用に設定するのに役立ちます

chmod 400 /{{path_to_your_key}}/keypair.pem

もう一度接続します。

0
BG Bruno