Oracle

[Oracle] ip 및 interface명 변경

bbugge 2021. 7. 25. 19:13

// 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파일을 읽고 변경된다.