2016. 8. 1. 17:19 오라클
Dataguard ORA-16191 계속 뜰때
현재구성은 RAC -> single 로 Dataguard 구성했음.
1번노드 : rac1
2번노드 : rac2
standby 노드 : test2
이상없이 구성한거 같은데 alertlog에 계속적으로 ORA-16191 계속뜰때..
------------------------------------------------------------
Check that the primary and standby are using a password file
and remote_login_passwordfile is set to SHARED or EXCLUSIVE,
and that the SYS password is same in the password files.
returning error ORA-16191
------------------------------------------------------------
Solution :
1. 1번에서 redo 전송 중지
SQL>alter system set log_archive_dest_state_2=DEFER sid='*' scope=both;
2. 1번 노드에서 passwd file 재생성
orapwd file=$ORACLE_HOME/dbs/orapwRAC1 password=oracle entries=10
3. 2번 노드 및 스탠바이 서버에 복사
scp orapwRAC1 rac2:$ORACLE_HOME/dbs/orapwRAC2
scp orapwRAC1 single2:$ORACLE_HOME/dbs/orapwTEST2
4. 1번에서 redo 전송 재개
SQL>alter system set log_archive_dest_state_2=ENABLE sid='*' scope=both;
5. log switch
SQL>alter system switch all logfile;
6. 잘되는지 alert 로그확인, 이상 없이 잘 되는구먼..