This page covers common configuration steps for GlusterFS deployments.
Use the same configuration file referenced in the setup guide for your installation.
Common config/metadata paths:
/etc/glusterfs/
/var/lib/glusterd/
gluster peer probe 10.0.0.11
gluster peer probe 10.0.0.12
gluster peer status
gluster volume create gv0 replica 3 \
10.0.0.10:/data/brick1/gv0 \
10.0.0.11:/data/brick1/gv0 \
10.0.0.12:/data/brick1/gv0 force
gluster volume start gv0
gluster volume set gv0 performance.cache-size 256MB
gluster volume set gv0 network.ping-timeout 30
Reload services or restart the storage daemon after updates.
For daemon restart:
sudo systemctl restart glusterd
Create a test volume or object to confirm configuration is valid.
gluster volume status
gluster volume info
gluster volume heal gv0 info
Client mount check:
mount -t glusterfs 10.0.0.10:/gv0 /mnt/gv0