[Sa] Последна задача

"Боби Б." 606u at dir.bg
Fri Apr 6 01:30:57 EEST 2012


On 05.04.2012, at 19:53, Vladimir Germanov wrote:
> Което навежда на мисълта дали glusterfs ще е удачен вариант... като
> имаме две freebsd-та.

FUSE-клиента не се компилират под FreeBSD (пробвано с 3.0.{5,8} и 3.2.6). Част от грешките са поправими, но във FreeBSD mount API-то приема доста по-ралични параметри. Иначе, както Владо каза, glusterfs осигурява репликацията на файловете под Линукс.

---------- /etc/glusterfs/glusterfsd.vol

volume posix
  type storage/posix                   # POSIX FS translator
  option directory /home/export        # Export this directory
end-volume

# add POSIX record locking support
volume brick
  type features/posix-locks
  option mandatory on          # enables mandatory locking on all files
  subvolumes posix
end-volume

# add network serving capability
volume server
  type protocol/server
  option transport-type tcp
  subvolumes brick
  option auth.addr.brick.allow 78.128.6.180,78.128.6.182,78.128.6.183,127.0.0.1
end-volume

---------- /etc/glusterfs/glusterfs.vol

volume brick0
  type protocol/client
  option transport-type tcp
  option remote-host 78.128.6.180      # IP address of the remote brick
# option transport.socket.remote-port 6996

# option transport-timeout 30          # seconds to wait for a reply
                                       # from server for each request
  option remote-subvolume brick        # name of the remote volume
end-volume

volume brick2
  type protocol/client
  option transport-type tcp
  option remote-host 78.128.6.182      # IP address of the remote brick
# option transport.socket.remote-port 6996

# option transport-timeout 30          # seconds to wait for a reply
                                       # from server for each request
  option remote-subvolume brick        # name of the remote volume
end-volume

volume afr
  type cluster/afr
  subvolumes brick0 brick2
end-volume

----------

После, след glusterfs /mnt може да се пише и маже, и промените се отразяват и на двата сървъра.

Идеи за BSD-тата?


More information about the Sa mailing list