| 1 | [[PageOutline]] |
| 2 | = Using GlusterFS in DRBL Environment = |
| 3 | == 0.Introduction == |
| 4 | |
| 5 | [[BR]] |
| 6 | == 1.Installation == |
| 7 | * [http://www.gluster.org/docs/index.php/Install_GlusterFS_from_Source Installation Manual] |
| 8 | * Install Requirements Packages |
| 9 | {{{ |
| 10 | $ aptitude install autotools libtool gcc flex bison byacc linux-headers-`uname -r` |
| 11 | }}} |
| 12 | * Install GlusterFS patched FUSE Module [http://ftp.zresearch.com/pub/gluster/glusterfs/fuse/ GlusterFS patched FUSE] |
| 13 | {{{ |
| 14 | $ wget http://ftp.zresearch.com/pub/gluster/glusterfs/fuse/fuse-2.7.3glfs10.tar.gz |
| 15 | $ tar -zxvf fuse-2.7.3glfs10.tar.gz |
| 16 | $ cd fuse-2.7.3glfs10 |
| 17 | $ ./configure --prefix=/usr --enable-kernel-module |
| 18 | $ make install |
| 19 | $ ldconfig |
| 20 | $ depmod -a |
| 21 | $ rmmod fuse |
| 22 | $ modprobe fuse |
| 23 | $ vim /etc/modules |
| 24 | fuse |
| 25 | }}} |
| 26 | * Install GlusterFS [http://ftp.zresearch.com/pub/gluster/glusterfs/1.3/ GlusterFS 1.3] |
| 27 | {{{ |
| 28 | $ wget http://ftp.zresearch.com/pub/gluster/glusterfs/1.3/glusterfs-1.3.11.tar.gz |
| 29 | $ tar -xzf glusterfs-1.3.11.tar.gz |
| 30 | $ cd glusterfs-1.3.11 |
| 31 | $ ./configure --prefix= |
| 32 | $ make install |
| 33 | }}} |
| 34 | |
| 35 | [[BR]] |
| 36 | == 2.FS design == |
| 37 | |
| 38 | [[BR]] |
| 39 | == 3.Test == |
| 40 | |
| 41 | [[BR]] |
| 42 | == 4.Refernece == |
| 43 | [http://www.gluster.org/docs/index.php/GlusterFS GlusterFS] |