GG配置ggmgr进程

Oracle配置mgr进程

edit params mgr

port 7809

syslog none

dynamicportlist 7810-7820

自己主动会生成./dirprm/mgr.prm文件。

start mgr

info mgr

-- This is the management port, each local machine have a special one  仅仅有这个是必须的。

port 7809

--OGG 11.X, Prevents GoldenGate messages from being written to the system logs.

syslog none

-- GoldenGate will use these dynamic ports to transfer the trailfiles,用netstat -an | grep 7810这样逐个看端口是否已经被占用

dynamicportlist 7809-7909

-- GoldenGate manager will auto start all the processes when MGR process is started

autostart er *

假设是autostart extract *,waitminutes 2,retries 5 表示自己主动重新启动extract进程,2分钟一次共5次。

-- GoldenGate manager will auto restart all the processes when it is Abended, Manager process will retry 24 times, interval 30min.

autorestart er *, retries 24, waitminutes 30, resetminutes 1440

-- GoldenGate manager will checks extract and replicat lag for each 10 minutes

lagreportminutes 10

-- GoldenGate manager will report lag information to the error log for each 1 seconds

laginfoseconds 1

-- GoldenGate manager will auto purge old trailfiles which was been used 168(7天) hours ago

purgeoldextracts ./dirdat/*, usecheckpoints, minkeephours 120

SQLServer配置mgr进程(与oracle一致)

edit params mgr

port 7809

syslog none

dynamicportlist 7810-7820

时间: 2024-10-27 20:00:05

GG配置ggmgr进程的相关文章

GG配置Oracle同步到SQLServer

源端目标端准备一张测试用的表. Oracle源端: drop table ggmgr.t1; create table ggmgr.t1( id int primary key, name varchar2(50), time date); Sqlserver目标端: BEGIN TRANSACTION SET QUOTED_IDENTIFIER ON SET ARITHABORT ON SET NUMERIC_ROUNDABORT OFF SET CONCAT_NULL_YIELDS_NULL

ASP.NET Core 发布 centos7 配置守护进程

ASP.NET Core应用程序发布linux在shell中运行是正常的.可一但shell关闭网站也就关闭了,所以要配置守护进程, 用的是Supervisor,本文主要记录配置的过程和过程遇到的问题 安装Supervisor 1  yum install python-setuptools 2   easy_install supervisor 配置Supervisor  3  mkdir /etc/supervisor 4  echo_supervisord_conf > /etc/super

(二)Linux实操之——网络配置、进程管理、服务管理、组管理

接上段   (一)Linux实操之——权限.任务调度.磁盘分区 4.网络配置 4.1 NAT模式的网络配置 目前我们采用的网络配置是NAT模式. windows下cmd通过 ipconfig 命令可以得到本机的网络配置. linux下通过 ifconfig 可得到虚拟机的网络配置 在windows系统中运行着虚拟机中的linux系统,那么两个系统是怎么通信的呢? 实际上windows系统与本机的linux的通信是通过 VMnet8的虚拟网卡来进行的,两者形成网络,192.168.177.128

路由配置及进程管理

Linux 环境配置 网络端口进程命令

网络通信命令ping 命令路径:/bin/ping 执行权限:所有用户作用:测试网络的连通性语法:ping 选项 IP地址  -c 指定发送次数    ping 命令使用的是icmp协议,不占用端口eg: # ping -c 3 127.0.0.1ifconfig 英文:interface configure 命令路径:/sbin/ifconfig 执行权限:root作用:查看和设置网卡网络配置语法:ifconfig [-a] [网卡设备标识]   -a:显示所有网卡信息ifconfig [网卡

gg init load初始化直接加载

实例:从Oracle初始化数据到Sqlserver. 配置初始化数据抓取(direct load) 源端(oracle) 增加初始化加载batch task group add extract eini01,sourceistable 参数解析: #sourceistable表示从表direct抓取而不是redo日志获取数据. info extract *,tasks    #查看状态是STOPPED 配置初始加载进程eini01的参数 edit params eini01 extract ei

Goldengate进程的合并与拆分规范

Goldengate抽取进程的合并与拆分原则 1.    文档综述 1.1.  文档说明 本文档描述了对GoldenGate的抽取进程进行拆分和合并的基本原则和详细步骤.  1.2.  读者范围 本文档主要容灾相关人员.纳入数据级容灾范围的应用系统相关人员使用,在Goldengate实施.运维的整个生命周期中,必须严格遵循本系列文档. 1.3.  术语说明 序号 完整说法 缩略说法 1 GoldenGate GG或OGG         2.      抽取进程的拆分 2.1.  拆分原则  

Oracle GoldenGate 快速安装配置实用指南

GoldenGate作为Oracle公司大力发展的核心战略产品,在高可用.容灾.数据抽取转换方面扮演着越来越重要的作用.goldengate可以做什么,说起来真的太多了,高可用.容灾.Real-Time数据同步,如果你做过BI,一定知道ETL的工具(datastage.infomatica等),goldengate也可以做,而且,还有两个很关键的因素,第一,goldengate支持异构的数据库,几乎囊括了所有的主流数据库,到底哪些呢,去这里看看吧http://www.oracle.com/tec

ogg 配置复习(dml>ddl>sequnce)

<strong><span style="color:#ff6666;">dml 配置过程与测试概要</span></strong> 在源端创建专用的表空间.schema.并授权. create tablespace goldengate datafile 'goldengate01.dbf' size 100m autoextend on; create user goldengate identified by goldengate