With 12c Golden Gate Oracle had introduced the Oracle Universal Install(OUI) for installation of Golden Gate. In previous version of the Golden Gate we were simply unzipping the file and the software becomes ready to use.
But 12c onwards we will use runinstaller to install the OGG software. 
OUI will help to keep uniformity across Oracle products.

In this post I will be discussing about Silent installation of Oracle 12c Golden Gate (OGG).


  • Download the appropriate  OGG software from Oracle as per operation system (Linux,HP,AIX etc.)


  • Unzip the software and go into the the extracted folder.  We can find the template response file(oggcore.rsp). Copy the response file and  edit the below parameter.

INSTALL_OPTION=ORA12c/ORA11g
ORA12c for installing Oracle GoldenGate for Oracle Database 12c and
ORA11g for installing Oracle GoldenGate for Oracle Database 11g


SOFTWARE_LOCATION=/u01/app/oracle/golden_gate


Location to install Oracle GoldenGate

START_MANAGER=true


Specify true to start the manager after installation else false.

MANAGER_PORT=7809


Any port number, default 7809. Only required if we are giving START_MANAGER as true.

DATABASE_LOCATION=/u01/app/oracle/product/11.2.0.3/dbhome_1


Location of the Oracle Database.Required only if START_MANAGER is true.

INVENTORY_LOCATION=/u01/app/oraInventory


Specify the location which holds the install inventory files. This is optional parameter.

UNIX_GROUP_NAME=oinstall


Group that should own the installation of Golden Gate.

Save the response file.



  • Run Installer in silent mode and pass the above create response file.
$ ./runInstaller -silent -responseFile oggcore.rsp
Starting Oracle Universal Installer...
Checking Temp space: must be greater than 120 MB.   Actual 1349 MB    Passed
Checking swap space: must be greater than 150 MB.   Actual 132096 MB    Passed
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2017-02-13_07-40-46PM. Please wait ...
 You can find the log of this install session at:
 /u01/app/oracle/oraInventory/logs/installActions2017-02-13_07-40-46PM.log
The installation of Oracle GoldenGate Core was successful.
Please check '/u01/app/oracle/oraInventory/logs/silentInstall2017-02-13_07-40-46PM.log' for more details.




The installation has been completed successfully.