일반적으로 RHCS 환경에서 HeartBeat Network 에대하여 Switch Hub 환경을 제안한다.
그러나 고객측에선 비용적인 문제로 인하여 Switch Hub 환경이 아닌 CrossOver Cable 환경으로 구성해 줄것을 요구한다.
이런경우 본 제품은 CrossOver Cable 환경의 HeartBeat Network 를 권장 및 지원하지 않는다고 강조 하지만 잘 적용이 안 된다.
관련하여 Red Hat 의 Document 를 첨부한다.
Detail :
“In addition, Red Hat does not support the use of crossover cables for
the cluster heartbeat network between nodes in a two-node cluster.”
link : https://access.redhat.com/kb/docs/DOC-40821 (RHN ID 필요)
'OS/RHCS & GFS'에 해당되는 글 7건
- 2012/01/05 (RHCS&GFS) RHCS 환경에선 HeartBeat Network 에 CrossCable 을 사용하면 안 된다. ( does not support )
- 2011/12/15 (RHCS&GFS) RHEL 5.5 이후부턴 single node gfs 를 지원하지 않는다.
- 2011/07/11 (RHCS) 가상화 관련 xen, kvm
- 2010/07/29 [Red Hat] GFS proto 및 lock table 변경하기 ...
- 2009/12/18 [Red Hat] RHCS on Xen fence_xvmd
- 2009/11/09 [Red Hat] RHCS 의 fence device 에 dell drac6 사용하기
- 2009/10/20 [Linux] RHCS Fencing Device List
Posted on 2012/01/05 10:22
Filed Under OS/RHCS & GFS
Posted on 2011/12/15 11:13
Filed Under OS/RHCS & GFS
RHEL 5.5 이상부터 Single Node GFS FileSystem 을 지원하지 않는다.
관련 내용 :
For the Red Hat Enterprise Linux 5.5 release and later Red Hat does not
support the use of GFS as a single-node file system. Red Hat will
continue to support single-node GFS file systems for existing customers.
참고 사이트 : [ Click ]
Posted on 2011/07/11 11:15
Filed Under OS/RHCS & GFS
참고 하면 좋을 자료
1.
How can I configure fence devices for my RHEL KVM or Xen guests running in a cluster?
https://access.redhat.com/kb/docs/DOC-5937
2.
Virtualization Support for High Availability in Red Hat Enterprise Linux 5 and 6
https://access.redhat.com/kb/docs/DOC-46375
3.
How can I configure my cluster to live migrate Red Hat Virtual guests?
https://access.redhat.com/kb/docs/DOC-5917
1.
How can I configure fence devices for my RHEL KVM or Xen guests running in a cluster?
https://access.redhat.com/kb/docs/DOC-5937
2.
Virtualization Support for High Availability in Red Hat Enterprise Linux 5 and 6
https://access.redhat.com/kb/docs/DOC-46375
3.
How can I configure my cluster to live migrate Red Hat Virtual guests?
https://access.redhat.com/kb/docs/DOC-5917
Posted on 2010/07/29 15:13
Filed Under OS/RHCS & GFS
GFS1,2 ( 2는 아직 확인 안 해봤음 호환 될꺼라 생각함 )
GFS Best Practices and Performance Tuning
Configuration and Setup
- Locking, and single to clustered filesystem changes
- Distributed lock management
- Switching from lock_nolock to a clustered filesystem:
- Display the superblock:
-gfs_tool sb /dev/vg00/mygfs all
## gfs volume 정보 확인
- Change Locking:
-gfs_tool sb /dev/vg00/mygfs proto lock_dlm
## protocol 변경
- Change Cluster:
-gfs_tool sb /dev/vg00/mygfs locktable mycluster:mygfs
## locktable 변경
## 상황에 따라선 LVM Locking Type 를 변경 한 후 적용해야 될때도 있다.
기존 2대의 GFS 시스템에서 1대의 Single GFS 로 갈경우 RHCS 가 Start 되어 있지 않아서 LVM 이 Cluster Volume 라고 활성화가 안 된다.
이 경우 일반 LVM 으로 변경 후 Cluster LVM 을 해제 한다. 방법은 아래와 같다.
/etc/lvm/lvm.conf
locking_type=1
to
locking_type=0 ## 1 을 0 으로 변경 한다.
vgchange -aln ## VG 비 활성화
vgchange -cn VG_Name ## VG cluster No
/etc/lvm/lvm.conf
locking_type=0
to
locking_type=1 ## 0 을 1 으로 원복 한다.
vgchange -aly ## VG 활성화
하면 LVM 이 활성화 된다.
그리고 나서 해당 LVM 의 protocol 이나 locktable 을 변경 하면 된다.
GFS Best Practices and Performance Tuning
Configuration and Setup
- Locking, and single to clustered filesystem changes
- Distributed lock management
- Switching from lock_nolock to a clustered filesystem:
- Display the superblock:
-gfs_tool sb /dev/vg00/mygfs all
## gfs volume 정보 확인
- Change Locking:
-gfs_tool sb /dev/vg00/mygfs proto lock_dlm
## protocol 변경
- Change Cluster:
-gfs_tool sb /dev/vg00/mygfs locktable mycluster:mygfs
## locktable 변경
## 상황에 따라선 LVM Locking Type 를 변경 한 후 적용해야 될때도 있다.
기존 2대의 GFS 시스템에서 1대의 Single GFS 로 갈경우 RHCS 가 Start 되어 있지 않아서 LVM 이 Cluster Volume 라고 활성화가 안 된다.
이 경우 일반 LVM 으로 변경 후 Cluster LVM 을 해제 한다. 방법은 아래와 같다.
/etc/lvm/lvm.conf
locking_type=1
to
locking_type=0 ## 1 을 0 으로 변경 한다.
vgchange -aln ## VG 비 활성화
vgchange -cn VG_Name ## VG cluster No
/etc/lvm/lvm.conf
locking_type=0
to
locking_type=1 ## 0 을 1 으로 원복 한다.
vgchange -aly ## VG 활성화
하면 LVM 이 활성화 된다.
그리고 나서 해당 LVM 의 protocol 이나 locktable 을 변경 하면 된다.
Posted on 2009/12/18 20:47
Filed Under OS/RHCS & GFS
rhcs 및 xen 구축을 정상적으로 하였으나
아래처럼 225.0.0.12:1229 를 못 찾을 경우가 있다.
Reading in key file /etc/cluster/fence_xvm.key into 0xbff720f8 (4096 max size)
Actual key length = 4096 bytesOpened ckpt vm_states
Setting up ipv4 multicast receive (225.0.0.12:1229)
Joining multicast group
Failed to bind multicast receive socket to 225.0.0.12: No such device
Check network configuration.
Could not set up multicast listen socket
가상 network 나 기타 network interface 가 많을경우 직접 인터페이스를 지정해 줘야 된다.
ex)
fence_xvmd -fdddddd -I eth0 ( multicast 를 하는 인터페이스 )
아래처럼 225.0.0.12:1229 를 못 찾을 경우가 있다.
Reading in key file /etc/cluster/fence_xvm.key into 0xbff720f8 (4096 max size)
Actual key length = 4096 bytesOpened ckpt vm_states
Setting up ipv4 multicast receive (225.0.0.12:1229)
Joining multicast group
Failed to bind multicast receive socket to 225.0.0.12: No such device
Check network configuration.
Could not set up multicast listen socket
가상 network 나 기타 network interface 가 많을경우 직접 인터페이스를 지정해 줘야 된다.
ex)
fence_xvmd -fdddddd -I eth0 ( multicast 를 하는 인터페이스 )
Posted on 2009/11/09 17:47
Filed Under OS/RHCS & GFS
http://linux.dell.com/wiki/index.php/Products/HA/DellRedHatHALinuxCluster/Cluster#Configure_iDRAC6_Fencing
RHEL 5.4 기준 RHCS 에서 fence device 를 사용할때 dell drac6 를 기본적으론 지원을 하지 않는다.
이럴경우 drac6로 사용하기 위한 메뉴얼
RHEL 5.4 기준 RHCS 에서 fence device 를 사용할때 dell drac6 를 기본적으론 지원을 하지 않는다.
이럴경우 drac6로 사용하기 위한 메뉴얼



