반응형
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
반응형
'Technical > OS, Infra' 카테고리의 다른 글
Split Brain - MariaDB Galera Cluster Case (0) | 2017.11.20 |
---|---|
[CentOS 7] Gluster Geo-replication 환경 구축과 테스트 (0) | 2016.10.10 |
Opensuse 11.4 scim을 버리고 nabi 0.99.9 로 갈아타기 (0) | 2011.08.09 |
Linux에서 부트시 스크립트 자동실행 설정하기 (0) | 2010.03.20 |
Windows 7에서 Mac OS X Snow Leopard 설치(Not Hackintosh) (0) | 2010.01.25 |