zoukankan      html  css  js  c++  java
  • DG修改SYS用户密码(ORA-16810,ORA-01017)

    修改主库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

  • 相关阅读:
    根据pandas和matplotlib制作简单的图表
    python-pandas 描述和汇总统计表
    linux json的使用
    zend studio10.5 + apache2.2 + php5.2.8 + xdebug2.3
    form表单中name和id区别
    浏览器中访问php页面没法正常显示
    zend studio
    ajax调试 No 'Access-Control-Allow-Origin' header is present on the requested resource
    火狐下input密码框自动填充值和php传数组给js的问题
    mysql 联合 count
  • 原文地址:https://www.cnblogs.com/orcl-2018/p/10609572.html
Copyright © 2011-2022 走看看