어제와 똑같이 살면서 다른 미래를 기대하지 말자

GlusterFS Client 3.7.x -> Server 3.6.x 연동 시 본문

IT관심분야/Linux

GlusterFS Client 3.7.x -> Server 3.6.x 연동 시

플랜액터 2016. 7. 7. 13:03

GlusterFS Client가 3.7로 업그레이드 후 Server 3.6로 mount가 되지 않는 문제가 발생하였다.

미루어놓고 있던 이 문제를 처리하기 위해 Google을 찾아보던 중 다행히 알려진 문제로 해결방법이 있습니다.

[문제점]

3.7.6 클라이언트는 권한이없는 포트 (> 1024)에서 연결을 시도합니다. 

3.6.x에서와 Gluster 서버는 기본 (<1024)에 의해 pivileged 포트의 연결을 필요로한다.

GlusterD 프로세스가 높은 포트 번호에서 연결을 종료하기 때문에 실패 가능성이 높습니다.

[해결]

GlusterFS Server에 다음과 같은 설정을 추가합니다.

# gluster volume set <volname> server.allow-insecure on

# gluster volume stop <volname>

# gluster volume start <volname>

# vi /etc/glusterfs/glusterd.vol

...
option rpc-auth-allow-insecure on
...

# service glusterd restart


https://www.gluster.org/pipermail/gluster-users/2015-November/024341.html

https://github.com/gluster/glusterfs/blob/release-3.6/doc/release-notes/3.6.3.md#known-issues

'IT관심분야 > Linux' 카테고리의 다른 글

[CentOS] nodejs, npm 설치  (0) 2018.01.25
[LGU+ 전자결제] 방화벽 설정  (0) 2016.11.01
[GlusterFS] 구성제안 및 운영  (0) 2016.07.07
[CentOS] APM (PHP 5.6.x 설치)  (0) 2016.04.12
[CentOS7] firewalld to iptables 사용  (0) 2016.03.30
Comments