분류 전체보기 102

[Oracle] Oracle RAC 클러스터 노드 제거 (Delete cluster node)

// 노드 상태 확인 # olsnodes -s -t // 제거할 노드가 pinned 상태라면 아래 명령어 적용 // $ crsctl unpin css -n node_to_be_deleted // 제거할 노드에서 명령어 적용 # ./runInstaller -updateNodeList ORACLE_HOME=Grid_home "CLUSTER_NODES= {node_to_be_deleted}" CRS=TRUE -silent -local # su - grid $ $GRID_HOME/deinstall/deinstall -local // ※ 주의 : -local 옵션을 붙이지 않으면 모든 노드의 클러스터가 삭제됨. // shared home 일 경우 아래 명령어를 적용 // $ perl $GRID_HOME/crs/i..

Oracle 2021.08.12

[Oracle] ORA-29760: instance_number parameter not specified

// ORA-29760: instance_number parameter not specified 장애현상 : RAC 환경에서 특정노드에서 startup을 했을 때, "ORA-29760: instance_number parameter not specified" 메세지를 띄우면서 start 되지 않음. 장애원인 : spfile 또는 pfile에 해당노드의 번호로 parameter가 정의되지 않았을 때 나타남. ex ) 문제의 노드가 3번이라고 가정 (인스턴스 : ORADB3) SQL> create pfile from spfile; $ cat initORADB1.ora | grep instance_number ORADB1.instance_number=1 ORADB2.instance_number=2 장애처리 :..

Oracle 2021.08.09

[Oracle] ORA-03113 : end-of-file on communication channel

// ORA-03113 : end-of-file on communication channel // 원인이 다양한 듯 함. 추후 해당 에러 발견 시 업데이트할 것!! https://www.tekstream.com/resource-center/ora-03113-end-of-file-on-communication-channel/ ORA-03113: end-of-file on communication channel | TekStream The source of an ORA-03113 is a broken connection between Client and Server process, a blanket end-of-file on a communication channel error. www.tekstream.com

Oracle 2021.08.09