安裝配置Oracle GoldenGate Director監控goldengate進程

如果生產環境下OGG服務特別多,安裝Oracle GoldenGate Director監控goldengate進程很有必要,能很方便的監控各個進程,抓取ERROR日誌,發送郵件等。


環境:rac01(ogg) 、rac02 、一臺linux安裝GG服務端、windows安裝GG客戶端
rac01 :192.168.1.5   安裝有4個ogg
rac02 :192.168.1.6

數據庫版本:11.2.0.3               GGDS版本:11.1.1.0

各賬號密碼:
weblogic    weblogic             ----linux系統賬號的
gg_dir      abc12345             ---數據庫的
           12345678             ---weblogic中間件安裝時的


weblogic登入:   weblogic   12345678

GGDS登入:    admin    admin          ---默認賬號密碼


Oracle GoldenGate Director安裝
Oracle GoldenGate Director是一個管理Oracle GoldenGate的圖形界面工具,它安裝以及配置都非常的簡單。這裏有兩臺主機rac01和rac02,上面都已經安裝好了GoldenGate軟件,並已成功配置。而另外一臺主機linux用作GoldenGate Director Server(這裏安裝在rac02上面),上面安裝GoldenGate Director服務器端軟件
1、安裝前準備:

1、JRE軟件版本必須是1.6.x以上。(http://www.java.com/zh_CN/download/manual.jsp)(用root用戶安裝即可)
./jdk-6u25-linux-x64.bin
配置環境變量:
vi /etc/profile
加入:
export JAVA_HOME=/jdk1.6.0_25/
export PATH=$JAVA_HOME/bin:$PATH
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar

PS:/jdk目錄是你自己放的,記得更改


2、安裝weblogic中間件

http://blog.csdn.net/oyzl68/article/details/8852563(這個是weblogic配置的網頁)
http://candon123.blog.51cto.com/704299/365086#0-sqq-1-7354-9737f6f9e09dfaf5d3fd14d775bfee85(圖形化配置weblogic的網頁)
 Linux下WebLogic12安裝  (weblogic可以去oracle的官網去下載)
 .
# groupadd weblogic
 # useradd -g weblogic weblogic
 # passwd weblogic
 # mkdir -p /u01/weblogic
 # chown -R weblogic:weblogic /u01/weblogic
 # su - weblogic
 $ vi ~/.bash_profile
增加 export LANG=en_US.iso885915
 $ su -
 # chmod a+x /root/wls1211_linux32.bin(文件名字根據自己下載的來)
 # ./wls1211_linux32.bin -mode=console(去掉這個參數就是圖形化安裝,和這個步驟一樣)
 Welcome:
 --------
 This installer will guide you through the installation of WebLogic 12.1.1.0.
 Type "Next" or enter to proceed to the next prompt.  If you want to change data entered previously, type "Previous".  You may quit the installer at any time by typing "Exit".
 Enter [Exit][Next]>        Next

 Choose Middleware Home Directory:
 ---------------------------------
     "Middleware Home" = [Enter new value or use default
 "/root/Oracle/Middleware"]
 Enter new Middleware Home OR [Exit][Previous][Next]>      /u01/weblogic

 Choose Middleware Home Directory:   
 ---------------------------------
     "Middleware Home" = [/u01/weblogic]
 Use above value or select another option:
     1 - Enter new Middleware Home
     2 - Change to default [/root/Oracle/Middleware]
 Enter option number to select OR [Exit][Previous][Next]>         Next

 Register for Security Updates:
 ------------------------------
 Provide your email address for security updates and  to initiate configuration manager.
    1|Email:[]
    2|Support Password:[]
    3|Receive Security Update:[Yes]
 Enter index number to select OR [Exit][Previous][Next]>        3

 Register for Security Updates:
 ------------------------------
 Provide your email address for security updates and  to initiate configuration manager.
     "Receive Security Update:" = [Enter new value or use default "Yes"]
 Enter [Yes][No]?         No

 Register for Security Updates:
 ------------------------------
 Provide your email address for security updates and  to initiate configuration manager.
     "Receive Security Update:" = [Enter new value or use default "Yes"]
     ** Do you wish to bypass initiation of the configuration manager and
     **  remain uninformed of critical security issues in your configuration?
 Enter [Yes][No]?        yes

 Register for Security Updates:
 ------------------------------
 Provide your email address for security updates and  to initiate configuration manager.
    1|Email:[]
    2|Support Password:[]
    3|Receive Security Update:[No]
 Enter index number to select OR [Exit][Previous][Next]>        Next

 Choose Install Type:
 --------------------
 Select the type of installation you wish to perform.
  ->1|Typical
     |  Install the following product(s) and component(s):
     | - WebLogic Server
     | - Oracle Coherence

    2|Custom
     |  Choose software products and components to install and perform optional
     |configuration.
 Enter index number to select OR [Exit][Previous][Next]>        1

 Choose Product Installation Directories:
 ----------------------------------------
 Middleware Home Directory: [/u01/weblogic]
 Product Installation Directories:
    1|WebLogic Server: [/u01/weblogic/wlserver_12.1]
    2|Oracle Coherence: [/u01/weblogic/coherence_3.7]
 Enter index number to select OR [Exit][Previous][Next]>        Next

 The following Products and JDKs will be installed:
 --------------------------------------------------
     WebLogic Platform 12.1.1.0
     |_____WebLogic Server
     |    |_____Core Application Server
     |    |_____Administration Console
     |    |_____Configuration Wizard and Upgrade Framework
     |    |_____Web 2.0 HTTP Pub-Sub Server
     |    |_____WebLogic SCA
     |    |_____WebLogic JDBC Drivers
     |    |_____Third Party JDBC Drivers
     |    |_____WebLogic Server Clients
     |    |_____Xquery Support
     |    |_____Evaluation Database
     |_____Oracle Coherence
     |    |_____Coherence Product Files
     |_____JDKs
          |_____SUN SDK 1.6.0_29
          |_____Oracle JRockit 1.6.0_29 SDK
     *Estimated size of installation: 1,178.0 MB
 Enter [Exit][Previous][Next]>         Next

 Installing files..
 0%          25%          50%          75%          100%
 [------------|------------|------------|------------]
 [***************************************************]
 Installing JDK....
 Performing String Substitutions...
 Configuring OCM...
 Installing Patches...
 Creating Domains...
 Installation Complete
 Press [Enter] to continue or type [Exit]>        EXIT

配置weblogic
 # cd /u01/weblogic/wlserver_12.1/common/bin
 # ./config.sh  -mode=console
 Welcome:
 --------
 Choose between creating and extending a domain. Based on your selection,
 the Configuration Wizard guides you through the steps to generate a new or
 extend an existing domain.
  ->1|Create a new WebLogic domain
     |    Create a WebLogic domain in your projects directory. 
    2|Extend an existing WebLogic domain
     |    Use this option to add new components to an existing domain and modify     |configuration settings.
 Enter index number to select OR [Exit][Next]>        1

 Select Domain Source:
 ---------------------
 Select the source from which the domain will be created. You can create the
 domain by selecting from the required components or by selecting from a
 list of existing domain templates.
  ->1|Choose Weblogic Platform components
     |    You can choose the Weblogic component(s) that you want supported in
     |your domain.
    2|Choose custom template
     |    Choose this option if you want to use an existing  template. This
     |could be a custom created template using the Template Builder.
 Enter index number to select OR [Exit][Previous][Next]>        1

 Application Template Selection:
 -------------------------------
     Available Templates
     |_____Basic WebLogic Server Domain - 12.1.1.0 [wlserver_12.1]x
     |_____Basic WebLogic SIP Server Domain - 12.1.1.0 [wlserver_12.1] [2]
     |_____WebLogic Advanced Web Services for JAX-RPC Extension - 12.1.1.0 [wlserver_12.1] [3]
     |_____WebLogic Advanced Web Services for JAX-WS Extension - 12.1.1.0 [wlserver_12.1] [4]
 Enter number exactly as it appears in brackets to toggle selection OR [Exit][Previous][Next]>        next

 Edit Domain Information:
 ------------------------
     |  Name  |    Value    |
    _|________|_____________|
    1| *Name: | base_domain |
 Enter value for "Name" OR [Exit][Previous][Next]>  weblogic

 Edit Domain Information:
 ------------------------
     |  Name  | Value     |
    _|________|_______    |
    1| *Name: | weblogic  |
 Use above value or select another option:
     1 - Modify "Name"
     2 - Discard Changes
 Enter option number to select OR [Exit][Previous][Next]>   Next

 Select the target domain directory for this domain:
 ---------------------------------------------------
     "Target Location" = [Enter new value or use default
 "/u01/weblogic/user_projects/domains"]
 Enter new Target Location OR [Exit][Previous][Next]>    Next

 Configure Administrator User Name and Password:
 -----------------------------------------------
 Create a user to be assigned to the Administrator role. This user is the
 default administrator used to start development mode servers.
     |          Name           |                  Value                  |
    _|_________________________|_________________________________________|
    1|         *Name:          |                weblogic                 |
    2|     *User password:     |                                         |
    3| *Confirm user password: |                                         |
    4|      Description:       | This user is the default administrator. |
 Use above value or select another option:
     1 - Modify "Name"
     2 - Modify "User password"
     3 - Modify "Confirm user password"
     4 - Modify "Description"
 Enter option number to select OR [Exit][Previous][Next]>        2

 Configure Administrator User Name and Password:
 -----------------------------------------------
 Create a user to be assigned to the Administrator role. This user is the
 default administrator used to start development mode servers.
     "*User password:" = []
 Enter new *User password: OR [Exit][Reset][Accept]>   輸入密碼(至少八位) 如:12345678

Create a user to be assigned to the Administrator role. This user is the
 default administrator used to start development mode servers.
     |          Name           |                  Value                  |
    _|_________________________|_________________________________________|
    1|         *Name:          |                weblogic                 |
    2|     *User password:     |                ********                 |
    3| *Confirm user password: |                                         |
    4|      Description:       | This user is the default administrator. |
 Use above value or select another option:
     1 - Modify "Name"
     2 - Modify "User password"
     3 - Modify "Confirm user password"
     4 - Modify "Description"
     5 - Discard Changes
 Enter option number to select OR [Exit][Previous][Next]>     3

 Configure Administrator User Name and Password:
 -----------------------------------------------
 Create a user to be assigned to the Administrator role. This user is the
 default administrator used to start development mode servers.
     "*Confirm user password:" = []
 Enter new *Confirm user password: OR [Exit][Reset][Accept]>重複密碼(至少八位) 12345678

Create a user to be assigned to the Administrator role. This user is the
 default administrator used to start development mode servers.
     |          Name           |                  Value                  |
    _|_________________________|_________________________________________|
    1|         *Name:          |                weblogic                 |
    2|     *User password:     |                 ******                  |
    3| *Confirm user password: |                 ******                  |
    4|      Description:       | This user is the default administrator. |

 Use above value or select another option:
     1 - Modify "Name"
     2 - Modify "User password"
     3 - Modify "Confirm user password"
     4 - Modify "Description"
     5 - Discard Changes
 Enter option number to select OR [Exit][Previous][Next]>     next

 Domain Mode Configuration:
 --------------------------
 Enable Development or Production Mode for this domain.
  ->1|Development Mode
    2|Production Mode
 Enter index number to select OR [Exit][Previous][Next]>     next

 Java SDK Selection:
 -------------------
    1|JRockit SDK 1.6.0_29 @ /var/bea/jrockit_160_29_D1.2.0-10
  ->2|Sun SDK 1.6.0_29 @ /var/bea/jdk160_29
    3|Other Java SDK
 Enter index number to select OR [Exit][Previous][Next]>     next

 Select Optional Configuration:
 ------------------------------
    1|Administration Server [ ]
    2|Managed Servers, Clusters and Machines [ ]
    3|RDBMS Security Store [ ]
 Enter index number to select OR [Exit][Previous][Next]>     1

 Select Optional Configuration:
 ------------------------------
    1|Administration Server [x]
    2|Managed Servers, Clusters and Machines [ ]
    3|RDBMS Security Store [ ]
 Enter index number to select OR [Exit][Previous][Next]>     next

 Each WebLogic Server domain must have one Administration Server. The Administration
 Server is used to perform administrative tasks.
     |       Name       |        Value        |
    _|__________________|_____________________|
    1|      *Name:      |     AdminServer     |
    2| *Listen address: | All Local Addresses |
    3|   Listen port:   |        7001         |
    4| SSL listen port: |         N/A         |
    5|   SSL enabled:   |        false        |
 Use above value or select another option:
     1 - Modify "Name"
     2 - Modify "Listen address"
     3 - Modify "Listen port"
     4 - Modify "SSL enabled"
 Enter option number to select OR [Exit][Previous][Next]>     3

 Each WebLogic Server domain must have one Administration Server. The Administration
 Server is used to perform administrative tasks.
     |       Name       |        Value        |
    _|__________________|_____________________|
    1|      *Name:      |     AdminServer     |
    2| *Listen address: | All Local Addresses |
    3|   Listen port:   |        7001         |
    4| SSL listen port: |         N/A         |
    5|   SSL enabled:   |        false        |
 Enter value for "Listen port" OR [Exit][Previous][Next]>     7001和上面OGGmonitor安裝定義的HTTP端口得一樣

 Each WebLogic Server domain must have one Administration Server. The Administration
 Server is used to perform administrative tasks.
     |       Name       |        Value        |
    _|__________________|_____________________|
    1|      *Name:      |     AdminServer     |
    2| *Listen address: | All Local Addresses |
    3|   Listen port:   |        7001         |
    4| SSL listen port: |         N/A         |
    5|   SSL enabled:   |        false        |
 Use above value or select another option:
     1 - Modify "Name"
     2 - Modify "Listen address"
     3 - Modify "Listen port"
     4 - Modify "SSL enabled"
     5 - Discard Changes
 Enter option number to select OR [Exit][Previous][Next]>     4

 Each WebLogic Server domain must have one Administration Server. The Administration
 Server is used to perform administrative tasks.
     *Enter index number to modify "Value"
    1|true
  ->2|false
    3|Unspecified
 Enter index number to select OR [Exit][Reset][Accept]>     1

 Each WebLogic Server domain must have one Administration Server. The Administration
 Server is used to perform administrative tasks.
     |       Name       |        Value        |
    _|__________________|_____________________|
    1|      *Name:      |     AdminServer     |
    2| *Listen address: | All Local Addresses |
    3|   Listen port:   |        7001       |
    4| SSL listen port: |        7002         |
    5|   SSL enabled:   |        true         |

 Use above value or select another option:
     1 - Modify "Name"
     2 - Modify "Listen address"
     3 - Modify "Listen port"
     4 - Modify "SSL listen port"
     5 - Modify "SSL enabled"
     6 - Discard Changes
 Enter option number to select OR [Exit][Previous][Next]>     4

 Each WebLogic Server domain must have one Administration Server. The Administration
 Server is used to perform administrative tasks.
     |       Name       |        Value        |
    _|__________________|_____________________|
    1|      *Name:      |     AdminServer     |
    2| *Listen address: | All Local Addresses |
    3|   Listen port:   |        7001         |
    4| SSL listen port: |        7002         |
    5|   SSL enabled:   |        true         |
 Enter value for "SSL listen port" OR [Exit][Previous][Next]>     7002

 Each WebLogic Server domain must have one Administration Server. The Administration
 Server is used to perform administrative tasks.
     |       Name       |        Value        |
    _|__________________|_____________________|
    1|      *Name:      |     AdminServer     |
    2| *Listen address: | All Local Addresses |
    3|   Listen port:   |        7001         |
    4| SSL listen port: |        7002         |
    5|   SSL enabled:   |        true         |
 Use above value or select another option:
     1 - Modify "Name"
     2 - Modify "Listen address"
     3 - Modify "Listen port"
     4 - Modify "SSL listen port"
     5 - Modify "SSL enabled"
     6 - Discard Changes
 Enter option number to select OR [Exit][Previous][Next]>     next

 Creating Domain...
 0%          25%          50%          75%          100%
 [------------|------------|------------|------------]
 [***************************************************]
 **** Domain Created Successfully! ****

啓動weblogic
 # /u01/weblogic/user_projects/domains/weblogic/startWebLogic.sh
(後臺運行:#/u01/weblogic/user_projects/domains/weblogic/startWebLogic.sh &)
  查看後臺運行程序:jobs
  關閉後臺運行程序:fg %n
 http://192.168.1.50:7001/console/
用戶名爲weblogic
密碼:八位密碼12345678


2.1.Weblogic 開機啓動
# vi /etc/rc.local
追加 sh /var/bea/user_projects/domains/weblogic/bin/startWebLogic.sh &


3、已安裝存放GG Director元數據的數據庫
(Mysql、MSSQL和Oracle三個其中之一)。這裏使用的是oracle數據庫。(把OGG同步做完)

4、準備GG Director服務器端安裝軟件和客戶端安裝軟件。其中客戶端的安裝軟件可以事先不必準備,因爲當服務器端安裝好後,客戶端可以從服務器端下載。

4、OGGD安裝過程:

1、服務器端安裝過程:(可以用xmanager遠程linux服務器)

這裏用的是版本11,軟件全名稱是gg-director-serversetup_unix_v11_1_1_0_0_005.sh。
[root@rac02 OGGMonitor]# ./gg-director-serversetup_unix_v12_1_2_0_1.sh

指定安裝位置  /u01/GG_Directorygg-director  ----下一步:

指定weblogic中間件家目錄  /u01/weblogic/   ---下一步:

定義http端口,默認是7001:
 
選擇數據庫類型:
 
指定數據庫的相關信息:


server host name :192.168.1.6
#sid     -----
server name      :racdb
database port    :1521


Server Host Name 也可以寫IP地址
在安裝之前,必須在數據庫中創建一個用戶,並且密碼必須是8位。
SQL> create user gg_dir identified by abc12345 default tablespace users;

User created.

SQL> grant connect,resource to gg_dir;

Grant succeeded.

 
安裝概要:
 
 
安裝完成後,就可以啓動weblogic服務了,啓動腳本位於/u01/GG_Directorgg-director/domain目錄下面,名稱是startWebLogic.sh。(啓動完腳本之後會此終端窗口不能關閉也不能做其他操作可以後面加 & 後臺運行);停止腳本位於/usr/GG_Directorgg-director/domain/bin目錄下面,腳本名稱是stopWebLogic.sh。(要關閉服務的話關閉終端窗口即可)其中的/u01/GG_Directorgg-director路徑是在安裝過程中指定的。

啓動完成後,就可以在客戶端通過瀏覽器訪問服務器端下載客戶端安裝軟件了,具體訪問以下地址:

http://serverIP:7001  根據系統平臺選擇相應的文件下載即可。

客戶端的安裝
這裏我們下載的windows客戶端安裝,安裝安裝嚮導完成即可。
配置篇客戶端:
服務端啓動weblogic服務
注意:這裏應該先停止之前啓動的weblogic (如果安裝完webgic就啓動了的話,現在啓動GG的weblogic就要先停止之前的weblogic)
GGDS的weblogic:/u01/weblogic/user_projects/domains/weblogic/bin/stopWebLogic.sh
     (啓動腳本在:/u01/weblogic/user_projects/domains/weblogic/startWebLogic.sh)

也可以根據以下方法查找並殺掉進程:
ps -ef | grep web
netstat -anpt | grep 7001
kill  -9   xxx

GGDS在  :/u01/GG_Directorgg-director/domain/startWebLogic.sh
停止腳本在:/u01/GG_Directorgg-director/domain/bin/stopWebLogic.sh


2、(linux的客戶端,我們用windows的跳過)客戶端如何訪問服務端呢?在客戶端上,執行run-director.sh程序,輸入相關信息即可。默認的用戶名和密碼是admin/admin,服務器是指《主機名/IP:端口號》。
3、管理Oracle GoldenGate data sources:運行了run-admin.sh程序後,會出現如下畫面:(我之前做的時候在Linux系統中登陸不上客戶端,在windows中安裝客戶端可以登陸。客戶端的機器必須安裝Java環境)

windows的
 
用戶名和密碼都是admin,server是指GG Director安裝機器名稱或IP,後面一定要加端口號,否則會登錄失敗的。登錄成功後,在Data Source選項卡里,輸入兩節點的相關信息,如圖:
 
其中Manager Port就是在安裝GG時定義的端口,默認是7809。還有一些其他參數的意義請參考官方文檔。
配置客戶端的參數具體描述:
  Host Identity:
? Fully Qualified Domain Name : GoldenGate實例所在的服務器名
? Manager Port : GoldenGate實例MGR進程端口號
? Data Source Name :原則上可以填寫任何名稱。建議制定命名規範。(如masterdatab)
? 點擊Check–Connection 驗證連接。
 
GoldenGate Info:
? Host Operating System: 選擇WU(即Windows/Unix意思)
? Database: 選擇數據庫類型。Oracle數據庫應選擇ORA。
? GoldenGate Version : 10.4 .1.1
? 點擊 “Save”,然後點擊“Yes”。
 
從左側的面板上選擇剛纔創建的Data Source(只在通過ODBC連接時才需要填寫),填寫完其他信息,包括:
Default DB Credential:
? DSN: 數據庫實例名或服務名
? Username : 用戶名
? Password & Confirm Password : 密碼
Access Control:
? Owner : 選擇admin(表示配置該數據源的owner爲admin,也可以選擇admin外的用戶)
? 勾選Host is Observable選項(表示配置該數據源對其他用戶可見,也可以不勾選)
? GoldenGate Version : 10.4
? 點擊“Save”
 Cannot Establish Remote GGSCI Session
There has been a problem reaching the remote host - please try the following:


完成後,通過瀏覽器訪問http://IP:7001/acon
要想看的以下情況,前提必須把ogg同步搭建完成且進程都正常啓動:
賬號密碼:admin    admin  
 
如果配置成功的話,就會看到倆節點上的進程都處於運行狀態。
整個主界面分爲三個區域:
左側面板包含了所有GoldenGate實例的列表以及一些功能鏈接。
右側上方按照GoldenGate實例分組列出了每個實例上所有進程的概況。
右側下方列出了所選實例的事件日誌。
監控整體運行情況
首先查看主界面左側面板,點擊一個實例左邊的黑三角符號可以展開該實例,查看到具體的進程。右側面板也會有相應的變化,列出該實例下所有進程的概要信息以及事件日誌。
 
  
 表示實例正在運行(MGR進程正常運行)
 表示實例沒有啓動(MGR進程已停止)
 表示進程正常運行
 表示進程正常停止
 表示進程非正常停止,需要進一步調查原因。同時會用紅色的Abended字樣標示。  
監控進程狀態
右側上方的面板顯示了每一個進程的概要信息。點擊More Info查看詳細的進程信息。
這裏可以查看到進程報告文件、詳細信息、歷史延時情況以及被丟棄的記錄。Discard File是進程用來存放丟棄記錄的文件。如果該文件中有記錄,需要詳細查看記錄情況,分析記錄被丟棄的原因,並解決相關問題。
 
查看事件日誌
主界面右側下方是事件日誌。
Info事件只是一般的事件,如收到stats命令等,不會對GoldenGate的正常運行造成影響。
Warning事件是有可能對GoldenGate造成影響的事件,如停止MGR進程等。
Error事件需要引起關注,表示有重大錯誤發生,已經影響到了GoldenGate的正常運行。

點擊右上角的Filter按鈕,把Show Information和Show Un-acknowledged Only兩項勾選掉。這樣,僅Warning和Error信息被顯示出來,便於發現問題。
 
篩選事件類型
 
篩選後的情況
Email告警
開啓Email告警功能需要事先部署一個Mail服務器。點擊主界面左側面板上My Email Alerts鏈接,在新窗口中填寫以下信息:
? Alert Name:告警的名字
? Alert Type:有兩種類型可供選擇。
如果選擇Process Lag,則需要指定一個時限,超過這個時限會引發告警。
如果選擇Event Text,則需要指定Event Type(Error,Warning等),以及Event text中包含的文本。當Event消息中包含此文本時,會引發告警。支持通配符*。
? Process Name:進程名稱,支持通配符*。
? Sent an email to:目標郵件地址
? With the subject:郵件標題
? From Address:發送方地址
? Mail server:郵件服務器,需要事先部署。
  
Email 告警
運行GGSCI命令
選擇主界面右上方某個實例,點擊實例下方的GGSCI圖標,進入命令行交互頁面。
 
在這裏,可以輸入各種命令,並顯示輸出結果。具體命令,請參考第二章內容。
 
GGSCI 交互頁面

基於C/S的Director客戶端
查看事件日誌
    和基於Web的方式類似,基於C/S的Director客戶端集中多個GoldenGate實例的日誌,可以進行排序、過濾等操作。
 

Email告警
  和基於Web的方式類似,可以指定規則,將滿足規則的日誌信息通過email方式告警。
 

運行GGSCI命令
  和基於Web的方式類似,可以在多個GoldenGate實例間切換執行ggsci命令,以管理GoldenGate。
 






---end---







發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章