// public interface : eth6 => eth7, ip : 192.168.0.0 => 192.168.1.0
// private interface : eth 5 => eth6, ip : 168.10.0.0 => 168.10.1.0
// 01. oifcfg ocr에 interface 이름 변경
// 확인
# oifcfg getif
eth5 168.10.0.0 global cluster_interconnect
eth6 192.168.0.0 global public
// 변경
// public , 필요시 ip 대역도 변경
# oifcfg setif -global eth7/192.168.1.0:public
// private , 필요시 ip 대역도 변경
# oifcfg setif -global eth6/168.10.1.0:cluster_interconnect
// 12c 이상의 클러스터에서 flex asm을 사용한다면 아래 명령어로 적용
// # oifcfg setif -global eth6/168.10.1.0:cluster_interconnect,asm
# crsctl stop crs
# crsctl disable crs
// os 또는 물리적인 network 수정 작업은 crs를 다시 boot하기 전에 작업한다.
// 02. crs 재기동
# crsctl enable crs
# crsctl start crs
// 기존 정보 삭제
# oifcfg delif -global en5/168.10.0.0
# oifcfg delif -global en6/192.168.0.0
// 03. srvctl 로 nodeapps 수정 (vip 수정)
# srvctl modify nodeapps -n csatdb1 -A 192.168.1.101/255.255.255.0/en7
# srvctl modify nodeapps -n csatdb2 -A 192.168.1.102/255.255.255.0/en7
// 04. scan ip는 /etc/hosts에서 변경해주면 hosts파일을 읽고 변경된다.
'Oracle' 카테고리의 다른 글
[Oracle] _gc_read_mostly_locking (0) | 2021.07.28 |
---|---|
[Oracle] ORA-07445 [eoa_mark_obj_as_needededd () + 668] (0) | 2021.07.27 |
[Oracle] INS-32826 the software home is already registered in the central inventory (0) | 2021.07.20 |
[Oracle] 데이터베이스 버전 별 JDK / JDBC (0) | 2021.07.01 |
[Oracle] 마이그레이션 전 Object 생성 DDL 구문 확인 script (0) | 2021.06.07 |