暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

如何激活 Oracle DataGuard Broker?

原创 小小亮 2022-10-21
399
在今天的文章中,我将告诉您如何激活 Oracle DataGuard Broker。

如果您之前没有安装过 Data Guard,您可以通过下面的链接安装它。

https://dbtut.com/index.php/2022/02/15/oracle-data-guard-installation/
复制


1. 我们在主数据库和备用数据库中激活 DataGuard Broker。

SQL> ALTER SYSTEM SET dg_broker_start=true;
复制

2、在主服务器上,我们如下连接DGMGRL,保存主数据库。

$ dgmgrl sys/<password>@testdb

DGMGRL for Linux: Version 11.2.0.4.0 - 64bit Production

Copyright (c) 2000, 2009, Oracle. All rights reserved.

Welcome to DGMGRL, type "help" for information.

Connected.

DGMGRL> CREATE CONFIGURATION dg_config AS PRIMARY DATABASE IS testdb CONNECT IDENTIFIER IS testdb;

Configuration "dg_config" created with primary database "testdb"
复制


3.我们保存备用数据库。

DGMGRL> ADD DATABASE teststby AS CONNECT IDENTIFIER IS teststby MAINTAINED AS PHYSICAL;

Database "teststby" added
复制


4. 新配置被激活。

DGMGRL> ENABLE CONFIGURATION;

Enabled.
复制


5.我们检查配置如下。

DGMGRL> SHOW CONFIGURATION;

Configuration - dg_config

Protection Mode: MaxPerformance

  Databases:

    testdb   - Primary database

    teststby - Physical standby database

Fast-Start Failover: DISABLED

Configuration Status:

SUCCESS
复制


主要配置:

DGMGRL> SHOW DATABASE testdb;

Database - testdb

Role:            PRIMARY

  Intended State:  TRANSPORT-ON

  Instance(s):

    testdb

Database Status:

SUCCESS
复制


待机配置:

DGMGRL> SHOW DATABASE teststby;

Database - teststby

Role:            PHYSICAL STANDBY

  Intended State:  APPLY-ON

  Transport Lag:   0 seconds (computed 0 seconds ago)

  Apply Lag:       0 seconds (computed 0 seconds ago)

  Apply Rate:      0 Byte/s

  Real Time Query: OFF

  Instance(s):

    teststby

Database Status:

SUCCESS
复制


原文标题:Active Oracle DataGuard Broker

原文作者:Melek Durdu

原文链接:https://dbtut.com/index.php/2022/10/13/active-oracle-dataguard-broker/

最后修改时间:2022-10-21 17:28:03
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论