On Sun, Jul 12, 2015 at 6:52 PM, "Yves R?veillon - eurower.fr"
<yves.reveillon at eurower.fr> wrote:> # MOUNT : FAILED
> mkdir /mnt/glusterfs
> /efr/glusterfs/sbin/glusterfs --debug --volfile-server=192.168.0.250
> --volume-name=test-volume /mnt/glusterfs
>
> No output for this command, no log, and :
> echo $?
> 255
>
The correct option to specify the volume name is `--volfile-id` not
`--volume-name`.
Your command line should look like,
`<path>/glusterfs --volfile-server=192.168.0.250
--volfile-id=test-volume /mnt/glusterfs`
I've dropped the `--debug` as it forces glusterfs to run in foreground
mode, which is not what many people want. If you would like to get
debug logs, use `--log-level=DEBUG`.