0

I'm using "GlusterFS" Client, to mount the GlusterFS Volume on my Web Server. Below is the MOUNT command when i manually mount from commandline:

# mount -t glusterfs -o aux-gfid-mount gluster1:/gv0 /var/www/html

I don't know how to put that -o aux-gfid-mount option inside the /etc/fstab. So my fstab is still, lacking of that option:

gluster1:/gv0 /var/www/html/ glusterfs defaults,_netdev,fetch-attempts=5 0 0

How do i put that -o aux-gfid-mount option inside the fstab please?

夏期劇場
  • 455
  • 2
  • 5
  • 18

1 Answers1

2

I would say as a standard "mount" option within fstab, comma separated :

gluster1:/gv0 /var/www/html/ glusterfs defaults,aux-gfid-mount,_netdev,fetch-attempts=5 0 0
krisFR
  • 12,830
  • 3
  • 31
  • 40