sshfs 挂载目录无响应

sshfs 挂载目录无响应

我已经通过 sshfs 安装了一个目录:

sshfs <user>@<host>:/var/www <host>/

但是,几个小时后,“事情”发生了,我无法再使用挂载的目录。症状类似于nfsmounted 服务器不可用时的情况:ls 失败、cd 失败等。

我尝试过

sshfs -o reconnect <user>@<host>:/var/www <host>/

但没有任何回应。

有人知道我如何卸载目录并重新挂载它,或者强制 sshfs 重新连接到服务器吗?

答案1

嗯,卸载-重新安装很容易

fusermount -u ~/mountpoint
sshfs user@host:/dir ~/mountpoint

完成了!顺便提一下,你的服务器上的 ssh keepalive 是否设置为 no?你可能只是超时了。

相关内容