SSHFS-自动重新连接


16

我有一个SSHFS挂载,可以使用命令行连接:

echo myPassword | sudo sshfs user@home.address:/ /media/NAS -p31337 -o workaround=rename -o password_stdin -o allow_other

这似乎足以将我的NAS安装/media/NAS好。

如果电源或Internet中断,连接有时会断开,在这种情况下,我将不得不识别出这种情况,并使用同一命令手动重新连接。

有没有办法让我的Ubuntu服务器在连接断开时自动尝试重新连接(例如每30秒一次)?

谢谢。

Answers:


30

这个问题在/server/6709/sshfs-mount-that-survives-disconnect/639735上得到了回答。我在这里复制它。

sshfs -o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3 server:/path/to/mount

如服务器故障链接中所述,该ServerAliveInterval=15选项要求sshfs每15秒检查服务器是否处于活动状态。ServerAliveCountMax=3允许服务器最多对三个活动检查不响应。结果是,如果服务器在1分钟内不可用,sshfs将重新连接到服务器。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.