Technical/OS, Infra
GlusterFS 3.2.2 - CentOS client에서 Gluster Volume 마운트 하기
Barracuda
2011. 9. 5. 16:30
반응형
CentOS에서 별도로 ctype의 설정이 필요한 것을 보면 RHEL 등의 redhad 계열에서 모두 필요한 과정으로 보임.
Dependancy: fuse, fuse-devel, flex, bison, python-devel, ctype
위의 의존성 있는 패키지들을 모두 설치하여야 한다.
단, ctype은 기본 centOS repository 에 포함되어 있지 않으므로 Source로 다운로드해서 빌드한다.
# wget wget http://downloads.sourceforge.net/project/ctypes/ctypes/1.0.2/ctypes-1.0.2.tar.gz
# tar xvzf ctypes-1.0.2.tar.gz
# cd ctypes-1.0.2
# python setup.py build
# python setup.py install
이제 Gluster Source를 다운로드하고 설치한다.
# wget http://download.gluster.com/pub/gluster/glusterfs/3.2/3.2.2/glusterfs-3.2.2.tar.gz
# tar xvzf glusterfs-3.2.2.tar.gz
# cd glusterfs-3.2.2
# ./configure --enable-fusermount
# make && make install
# ldconfig
Gluster volume 을 마운트하고 테스트해본다
# mount -t glusterfs w.x.y.z:/volname /local_mount_point
반응형