修改主庫PROD1密碼后,查看configuration狀態看到以下報錯:
[oracle@edgzrip1-PROD1 ~]$ dgmgrl sys/oracle
DGMGRL for Linux: Version 11.2.0.3.0 - Production
Copyright (c) 2000, 2009, Oracle. All rights reserved.
Welcome to DGMGRL, type "help" for information.
Connected.
DGMGRL> show configuration;
Configuration - PROD1.us.oracle.com
Protection Mode: MaxAvailability
Databases:
PROD1 - Primary database
Error: ORA-16810: multiple errors or warnings detected for the database
DG - Physical standby database
Error: ORA-01017: invalid username/password; logon denied
Fast-Start Failover: DISABLED
Configuration Status:
ERROR
解決方法:
1、關閉備庫(DG)
2、將主庫密碼文件orapwPROD1傳輸到備庫,並修改文件名為:orwpwDG
[oracle@edgzrip1-PROD1 ~]$ scp /u01/app/oracle/product/11.2.0/dbhome_1/dbs/orapwPROD1 edgzrip2:/u01/app/oracle/product/11.2.0/db_1/dbs/orapwDG
3、啟動備庫(DG)
4、再次查看configuration信息
[oracle@edgzrip2-DG dbs]$ dgmgrl sys/oracle
DGMGRL for Linux: Version 11.2.0.3.0 - Production
Copyright (c) 2000, 2009, Oracle. All rights reserved.
Welcome to DGMGRL, type "help" for information.
Connected.
DGMGRL> show configuration verbose;
Configuration - PROD1.us.oracle.com
Protection Mode: MaxAvailability
Databases:
PROD1 - Primary database
DG - Physical standby database
Properties:
FastStartFailoverThreshold = '30'
OperationTimeout = '30'
FastStartFailoverLagLimit = '30'
CommunicationTimeout = '180'
FastStartFailoverAutoReinstate = 'TRUE'
FastStartFailoverPmyShutdown = 'TRUE'
BystandersFollowRoleChange = 'ALL'
Fast-Start Failover: DISABLED
Configuration Status:
SUCCESS
2019-3-27 18:21