From 6cda2255d304edd80d08a254ee2d3e396dcdade5 Mon Sep 17 00:00:00 2001 From: Daniel Fonseca de Lira Date: Mon, 31 May 2021 09:24:58 -0300 Subject: [PATCH] Updated FUSE Mount (markdown) --- FUSE-Mount.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/FUSE-Mount.md b/FUSE-Mount.md index eac4aa6..233f5da 100644 --- a/FUSE-Mount.md +++ b/FUSE-Mount.md @@ -38,6 +38,13 @@ cp weed /sbin/mount.weed mount -t weed fuse /mnt -o "filer=localhost:8888,filer.path=/" ``` +To mount with multiple filers enclose filer parameter with quotes and separate servers with comma: + +```bash +cp weed /sbin/mount.weed +mount -t weed fuse /mnt -o "filer='192.168.0.1:8888,192.168.0.2:8888',filer.path=/" +``` + Now you can operate the SeaweedFS files, browsing or modifying directories and files, in local file system. To unmount, just shut it down the "weed mount".