goldengate軟體安裝之 install goldengate 12c for oracle 11g on solaris sparic 64
1. download goldengate software
goldengate軟體可以從“Oracle Software Delivery Cloud”來下載,這裡可以找到所有獲許可證的Oracle產品的下載資料。Goldengate被oracle歸類為其fusion middleware產品中的一員。
這裡,我需要安裝的產品版本為: “Oracle GoldenGate on Oracle v12.1.2 Media Pack for Oracle Solaris on SPARC (64-bit)”
2.設定環境變數
確保資料庫server上設定了ORACLE_HOME和ORACLE_SID環境變數,後面配置goldengate程式時需要使用到這些變數。當然,如果不在環境變數裡配置的話,我們也可以在配置goldengate時使用引數SETENV來設定;
比如:
SETENV (ORACLE_HOME = “/app/oracle/product/11.2.0/dbhome_1”)
SETENV (ORACLE_SID = “test101”)
設定PATH和LD_LIBRARY_PATH環境變數:
將goldengate的安裝目錄加入到PATH變數裡,同時將該安裝目錄也加入到LD_LIBRARY_PATH變數中。
這裡有一點需要注意,在編輯LD_LIBRARY_PATH環境變數之前,需要確保oracle資料庫庫庫檔案目錄已經存在於該環境變數中,如果沒有則需要將該目錄加上,如:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib
3.goldengate軟體的安裝
將下載的軟體zip安裝包複製到資料庫伺服器上,使用unzip命令解壓。
使用Oracle Universal Installer(OUI)安裝goldengate:
從12c版本開始,goldengate支援用OUI工具安裝軟體。在此之前的版本,我們只需要解壓安裝檔案後在GGSCI命令列介面中執行CREATE SUBDIRS即可實現goldengate的安裝。
從goldengate的官方文件《Oracle GoldenGate for Windows and UNIX》來看,以前的這種安裝方式應該還是被支援的,但我在寫此文是並沒有弄清楚如何操作,因為新軟體解壓包中並不直接提供GGSCI工具。
好了,這裡繼續介紹goldengate的OUI方式安裝。
有了OUI,由於其支援影像化互動操作,所以我們直接按照提示輸入需要的引數即可完成安裝。
在UNIX環境下,由於一般系統沒有預設配置對圖形化工具的支援,所以我們可以象安裝oracle資料庫一樣,使用slient方式安裝,這裡唯一要做的就是事先準備好response檔案。
goldengate安裝檔案的response目錄下提供了response檔案的模板oggcore.rsp,我們可以根據檔案裡的提示來為相應引數提供需要的值,列舉如下:
################################################################################
## ##
## Oracle GoldenGate installation option and details ##
## ##
################################################################################
#-------------------------------------------------------------------------------
# Specify the installation option.
# Specify ORA12c for installing Oracle GoldenGate for Oracle Database 12c and
# ORA11g for installing Oracle GoldenGate for Oracle Database 11g
#-------------------------------------------------------------------------------
INSTALL_OPTION=ORA11g
--這裡我的資料庫環境是11.2.0.4,所以我選擇了ORA11g
#-------------------------------------------------------------------------------
# Specify a location to install Oracle GoldenGate
#-------------------------------------------------------------------------------
SOFTWARE_LOCATION=/app/oracle/goldengate
--這裡是goldengate軟體的安裝目錄,在安裝之前,請確保你提前建立了該目錄。
#-------------------------------------------------------------------------------
# Specify true to start the manager after installation.
#-------------------------------------------------------------------------------
START_MANAGER=false
#-------------------------------------------------------------------------------
# Specify a free port within the valid range for the manager process.
# Required only if START_MANAGER is true.
#-------------------------------------------------------------------------------
MANAGER_PORT=7809
#-------------------------------------------------------------------------------
# Specify the location of the Oracle Database.
# Required only if START_MANAGER is true.
#-------------------------------------------------------------------------------
DATABASE_LOCATION=/app/oracle/product/11.2.0/dbhome_1
################################################################################
## Specify details to Create inventory for Oracle installs ##
## Required only for the first Oracle product install on a system. ##
################################################################################
#-------------------------------------------------------------------------------
# Specify the location which holds the install inventory files.
# This is an optional parameter if installing on
# Windows based Operating System.
#-------------------------------------------------------------------------------
INVENTORY_LOCATION=/opt/appl/users/oracle/oraInventory
--同/var/opt/oracle/oraInst.loc檔案中inventory_loc引數的值,可以不予設定
#-------------------------------------------------------------------------------
# Unix group to be set for the inventory directory.
# This parameter is not applicable if installing on
# Windows based Operating System.
#-------------------------------------------------------------------------------
UNIX_GROUP_NAME=oinstall
--同/var/opt/oracle/oraInst.loc檔案中inst_group引數的值,可以不予設定
在準備好goldengate response檔案後,就可以安裝goldengate軟體了:
./runInstaller -silent -responseFile /app/oracle/goldengate/fbo_ggs_Solaris_sparc_shiphome/Disk1/response/oggcore.rsp
4.建立goldengate子目錄
cd /app/oracle/goldengate
ggsci
GGSCI 1> CREATE SUBDIRS
到這裡,goldengate的軟體安裝就完成了。
goldengate軟體可以從“Oracle Software Delivery Cloud”來下載,這裡可以找到所有獲許可證的Oracle產品的下載資料。Goldengate被oracle歸類為其fusion middleware產品中的一員。
這裡,我需要安裝的產品版本為: “Oracle GoldenGate on Oracle v12.1.2 Media Pack for Oracle Solaris on SPARC (64-bit)”
2.設定環境變數
確保資料庫server上設定了ORACLE_HOME和ORACLE_SID環境變數,後面配置goldengate程式時需要使用到這些變數。當然,如果不在環境變數裡配置的話,我們也可以在配置goldengate時使用引數SETENV來設定;
比如:
SETENV (ORACLE_HOME = “/app/oracle/product/11.2.0/dbhome_1”)
SETENV (ORACLE_SID = “test101”)
設定PATH和LD_LIBRARY_PATH環境變數:
將goldengate的安裝目錄加入到PATH變數裡,同時將該安裝目錄也加入到LD_LIBRARY_PATH變數中。
這裡有一點需要注意,在編輯LD_LIBRARY_PATH環境變數之前,需要確保oracle資料庫庫庫檔案目錄已經存在於該環境變數中,如果沒有則需要將該目錄加上,如:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib
3.goldengate軟體的安裝
將下載的軟體zip安裝包複製到資料庫伺服器上,使用unzip命令解壓。
使用Oracle Universal Installer(OUI)安裝goldengate:
從12c版本開始,goldengate支援用OUI工具安裝軟體。在此之前的版本,我們只需要解壓安裝檔案後在GGSCI命令列介面中執行CREATE SUBDIRS即可實現goldengate的安裝。
從goldengate的官方文件《Oracle GoldenGate for Windows and UNIX》來看,以前的這種安裝方式應該還是被支援的,但我在寫此文是並沒有弄清楚如何操作,因為新軟體解壓包中並不直接提供GGSCI工具。
好了,這裡繼續介紹goldengate的OUI方式安裝。
有了OUI,由於其支援影像化互動操作,所以我們直接按照提示輸入需要的引數即可完成安裝。
在UNIX環境下,由於一般系統沒有預設配置對圖形化工具的支援,所以我們可以象安裝oracle資料庫一樣,使用slient方式安裝,這裡唯一要做的就是事先準備好response檔案。
goldengate安裝檔案的response目錄下提供了response檔案的模板oggcore.rsp,我們可以根據檔案裡的提示來為相應引數提供需要的值,列舉如下:
################################################################################
## ##
## Oracle GoldenGate installation option and details ##
## ##
################################################################################
#-------------------------------------------------------------------------------
# Specify the installation option.
# Specify ORA12c for installing Oracle GoldenGate for Oracle Database 12c and
# ORA11g for installing Oracle GoldenGate for Oracle Database 11g
#-------------------------------------------------------------------------------
INSTALL_OPTION=ORA11g
--這裡我的資料庫環境是11.2.0.4,所以我選擇了ORA11g
#-------------------------------------------------------------------------------
# Specify a location to install Oracle GoldenGate
#-------------------------------------------------------------------------------
SOFTWARE_LOCATION=/app/oracle/goldengate
--這裡是goldengate軟體的安裝目錄,在安裝之前,請確保你提前建立了該目錄。
#-------------------------------------------------------------------------------
# Specify true to start the manager after installation.
#-------------------------------------------------------------------------------
START_MANAGER=false
#-------------------------------------------------------------------------------
# Specify a free port within the valid range for the manager process.
# Required only if START_MANAGER is true.
#-------------------------------------------------------------------------------
MANAGER_PORT=7809
#-------------------------------------------------------------------------------
# Specify the location of the Oracle Database.
# Required only if START_MANAGER is true.
#-------------------------------------------------------------------------------
DATABASE_LOCATION=/app/oracle/product/11.2.0/dbhome_1
################################################################################
## Specify details to Create inventory for Oracle installs ##
## Required only for the first Oracle product install on a system. ##
################################################################################
#-------------------------------------------------------------------------------
# Specify the location which holds the install inventory files.
# This is an optional parameter if installing on
# Windows based Operating System.
#-------------------------------------------------------------------------------
INVENTORY_LOCATION=/opt/appl/users/oracle/oraInventory
--同/var/opt/oracle/oraInst.loc檔案中inventory_loc引數的值,可以不予設定
#-------------------------------------------------------------------------------
# Unix group to be set for the inventory directory.
# This parameter is not applicable if installing on
# Windows based Operating System.
#-------------------------------------------------------------------------------
UNIX_GROUP_NAME=oinstall
--同/var/opt/oracle/oraInst.loc檔案中inst_group引數的值,可以不予設定
在準備好goldengate response檔案後,就可以安裝goldengate軟體了:
./runInstaller -silent -responseFile /app/oracle/goldengate/fbo_ggs_Solaris_sparc_shiphome/Disk1/response/oggcore.rsp
4.建立goldengate子目錄
cd /app/oracle/goldengate
ggsci
GGSCI 1> CREATE SUBDIRS
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30186176/viewspace-1815193/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【OGG】Oracle GoldenGate 11g (一) 安裝GoldenGate 11g on LinuxOracleGoLinux
- Oracle GoldenGate安裝初體驗OracleGo
- Oracle GoldenGate安裝(一)OracleGo
- Oracle GoldenGate安裝(二)OracleGo
- Oracle GoldenGate安裝(三)OracleGo
- Oracle goldengate 安裝配置OracleGo
- 解除安裝Oracle GoldenGateOracleGo
- Oracle GoldenGate系統之----安裝及使用OracleGo
- 【GoldenGate】Oracle GoldenGate Veridata 安裝配置與應用GoOracle
- 安裝GoldenGateGo
- 【GoldenGate】Oracle GoldenGate(一) 安裝與DML單向同步配置GoOracle
- Oracle GoldenGate 12c 新特性OracleGo
- 解除安裝goldengateGo
- Oracle GoldenGate在RAC上部署安裝OracleGo
- oracle goldengate for oracle rac 的安裝和切換OracleGo
- GoldenGate安裝簡記Go
- 安裝並配置goldengateGo
- GoldenGate for win安裝配置Go
- Oracle GoldenGate相關講解及安裝OracleGo
- 【OGG】Oracle GoldenGate 11g (二) GoldenGate 11g 單向同步配置 上OracleGo
- 【OGG】Oracle GoldenGate 11g (二) GoldenGate 11g 單向同步配置 下OracleGo
- Oracle Goldengate 12c打pus補丁OracleGo
- Oracle goldengate 12c 新特性之完美支援Active Data GuardOracleGo
- Solaris 10上安裝Oracle 11gOracle
- Oracle GoldenGate資料同步備份軟體概述OracleGo
- 安裝配置Oracle GoldenGate for DB2(單向)OracleGoDB2
- goldengate學習-安裝篇Go
- Linux下安裝GoldenGateLinuxGo
- goldengate 12c對oracle DB的改進GoOracle
- Oracle goldengate 11g 錯誤彙總OracleGo
- oracle goldengate 10g--->11g配置OracleGo
- 【GoldenGate】Oracle GoldenGate(三) DDL同步配置GoOracle
- GoldenGate軟體升級步驟Go
- Linux下解除安裝GoldenGateLinuxGo
- GOLDENGATE安裝和配置手冊Go
- goldengate 12c 針對oracle 12c配置的主要變化GoOracle
- Oracle 12c與GoldenGate 12c的一些問答OracleGo
- 【Oracle】RHEL6.4-64位 安裝oracle11.2.0.3(三) 安裝Oracle軟體Oracle