Replies: 1 comment
-
I create volume by export GDIR=/home/$USER/gdir
$ sudo gluster volume create myvolume replica 3 192.168.100.100:$GDIR 192.168.100.101:$GDIR 192.168.100.102:$GDIR force
volume create: myvolume: success: please start the volume to access data
$ sudo gluster volume start myvolume
volume start: myvolume: success
$ mkdir ./nas_dir
$ mount -t glusterfs 192.168.100.100:/myvolume ./nas_dir
$ echo "hello" > ./nas_dir/test.txt But |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I has 3 ubuntu server with 40G, and i want to create a file cluster for use by k8s, providing more than 40G of storage space, and also ensuring that NFS services can be provided normally even if one of the servers goes down.
I have discovered GlusterFS and, according to the documentation, connected three servers now.
But I got some error when i create volume from the doc https://docs.gluster.org/en/latest/Administrator-Guide/Brick-Naming-Conventions/
Beta Was this translation helpful? Give feedback.
All reactions