web-dev-qa-db-ja.com

Sshfsが機能していません

走ると

sshpass -p 'mypass' sshfs 'root'@'68.19.40.16':/ '/dir' -o StrictHostKeyChecking=no,debug

正常にマウントされますが、フォアグラウンドで実行されます。

'debug'パラメータなしで実行すると、まったくマウントされません。

サーバーはubuntu8.04です

なぜ何かアイデアはありますか?

更新:コマンドをROOTとして実行すると、マウントされます。他のユーザーとは連携しません。

これが失敗したマウントの出力です

$ sshpass -p 'pass' sshfs  'root'@'68.1.1.1':/ '/s6' -o StrictHostKeyChecking=no,sshfs_debug,loglevel=debug
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to 68.1.1.1 [68.1.1.1] port 22.
debug1: Connection established.
debug1: identity file /var/www/vhosts/devrim.kodingen.com/.ssh/id_rsa type -1
debug1: identity file /var/www/vhosts/devrim.kodingen.com/.ssh/id_dsa type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.1p1 Debian-5
debug1: match: OpenSSH_5.1p1 Debian-5 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_4.7p1 Debian-8ubuntu1.2
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 none
debug1: kex: client->server aes128-cbc 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
Warning: Permanently added '68.1.1.1' (RSA) to the list of known hosts.
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,password
debug1: Next authentication method: publickey
debug1: Trying private key: /var/www/vhosts/devrim.kodingen.com/.ssh/id_rsa
debug1: Trying private key: /var/www/vhosts/devrim.kodingen.com/.ssh/id_dsa
debug1: Next authentication method: password
debug1: Authentication succeeded (password).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
debug1: Sending environment.
debug1: Sending env LANG = en_GB.UTF-8
debug1: Sending subsystem: sftp
Server version: 3
debug1: channel 0: free: client-session, nchannels 1
debug1: fd 0 clearing O_NONBLOCK
debug1: Killed by signal 1.
6
Devrim

これに対する解決策を見つけることができませんでした。フォアグラウンドで実行しています。

0
Devrim

同じ問題が見つかりました。sshfsをsshpassと組み合わせると、sshfsがフォアグラウンドで実行されている場合にのみ機能します(-fまたは-d)。バックグラウンドで実行された場合、終了値0で正常に実行されますが、何もマウントされません。

私が見つけた回避策は、フォアグラウンドモードでsshfsを実行することですが、シェルを使用してバックグラウンドに送信します。

sshpass -f passwordfile sshfs -f Origin destination &

このように動作します。次に、マウントが不要になり、fusermount -uを使用してマウントを解除すると、sshfsプロセスは正常に終了します。

4
jesjimher

Fuseデバイスにアクセスする必要があり、ルートアクセスが必要なようです。

0
sybreon

私の問題も同様で、/ etc /Fuse.confのFuse構成ファイルに関係していました。 user_allow_otherのコメントを解除し、Sudoなしでマウントする必要がありました:sshfs -o allow_other [email protected]:/ foo/bar/home/uesr/foor/bar/baz

0
cennings