Tuesday, June 24, 2025

Prepare Databases for GoldenGate Replication

  • Introduction: In the previous posts, we had covered the step-by-step installation of Oracle GoldenGate (OGG) for both Oracle and MySQL environments. Please visit those, links are given below. Now for replication we are using Oracle database as source and MySQL database as target. In this article, we will go through the essential steps to prepare Oracle (source) and MySQL (target) databases for GoldenGate .

  • Oracle GoldenGate 23ai Installation for Oracle
    Oracle GoldenGate 23ai Installation for MySQL

  • Prerequisites: Below are the minimum requirements.
    • Oracle database should be installed on source server.
    • MySQL database should be installed on target server.
    • Connectivity between GoldenGate server and database servers.

  • Environment Used:
    Server Source (Oracle) Target (MySQL) OGG (Oracle) OGG (MySQL)
    Hostname orcl.oraeasy.com mysqlOGG.oraeasy.com ogg.oraeasy.com mysqlOGG.oraeasy.com
    OS OEL 9 OEL 9 OEL 9 OEL 9
    DB Name ORCL mysqldb NA NA

    Please note that we are using the same server for MySQL Database and for its GoldenGate.

  • Now first setup the Oracle Database for GoldenGate step by step:
1. Now enable SUPPLEMENTAL_LOG_DATA and set ENABLE_GOLDENGATE_REPLICATION to TRUE. Also make sure that Database should be in ARCHIVELOG mode, if not then make it.


SQL> def
DEFINE _DATE           = "02-JUN-25" (CHAR)
DEFINE _CONNECT_IDENTIFIER = "orcldc" (CHAR)
DEFINE _USER           = "SYS" (CHAR)
DEFINE _PRIVILEGE      = "AS SYSDBA" (CHAR)
DEFINE _SQLPLUS_RELEASE = "1927000000" (CHAR)
DEFINE _EDITOR         = "vi" (CHAR)
DEFINE _O_VERSION      = "Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.27.0.0.0" (CHAR)
DEFINE _O_RELEASE      = "1927000000" (CHAR)
SQL>
SQL> SELECT name,open_mode,database_role, log_mode,supplemental_log_data_min from v$database;

NAME      OPEN_MODE            DATABASE_ROLE    LOG_MODE     SUPPLEMENTAL_LOG_DAT
--------- -------------------- ---------------- ------------ --------------------
ORCL      READ WRITE           PRIMARY          ARCHIVELOG   NO

SQL> ALTER DATABASE ADD SUPPLEMENTAL LOG DATA;

Database altered.

SQL> SELECT name,open_mode,database_role, log_mode,supplemental_log_data_min from v$database;

NAME      OPEN_MODE            DATABASE_ROLE    LOG_MODE     SUPPLEMENTAL_LOG_DAT
--------- -------------------- ---------------- ------------ --------------------
ORCL      READ WRITE           PRIMARY          ARCHIVELOG   YES

SQL>
SQL> show parameter ENABLE_GOLDENGATE_REPLICATION

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
enable_goldengate_replication        boolean     FALSE
SQL>
SQL> ALTER SYSTEM SET ENABLE_GOLDENGATE_REPLICATION=TRUE SCOPE=BOTH;

System altered.

SQL> show parameter ENABLE_GOLDENGATE_REPLICATION

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
enable_goldengate_replication        boolean     TRUE
SQL>
2. Now create the tablespace in CDB and PDB.


SQL> show pdbs

    CON_ID CON_NAME                       OPEN MODE  RESTRICTED
---------- ------------------------------ ---------- ----------
         2 PDB$SEED                       READ ONLY  NO
         3 ORCLPDB                        READ WRITE NO
SQL>
SQL> select name from v$datafile;

NAME
-----------------------------------------------------------------
/u01/app/oracle/oradata/ORCL/system01.dbf
/u01/app/oracle/oradata/ORCL/sysaux01.dbf
/u01/app/oracle/oradata/ORCL/undotbs01.dbf
/u01/app/oracle/oradata/ORCL/pdbseed/system01.dbf
/u01/app/oracle/oradata/ORCL/pdbseed/sysaux01.dbf
/u01/app/oracle/oradata/ORCL/users01.dbf
/u01/app/oracle/oradata/ORCL/pdbseed/undotbs01.dbf
/u01/app/oracle/oradata/ORCL/orclpdb/system01.dbf
/u01/app/oracle/oradata/ORCL/orclpdb/sysaux01.dbf
/u01/app/oracle/oradata/ORCL/orclpdb/undotbs01.dbf
/u01/app/oracle/oradata/ORCL/orclpdb/users01.dbf
/u01/app/oracle/oradata/ORCL/orclpdb/test01.dbf
/u01/app/oracle/oradata/ORCL/orclpdb/test02.dbf
/u01/app/oracle/oradata/ORCL/orclpdb/users02.dbf
/u01/app/oracle/oradata/ORCL/orclpdb/test03.dbf

15 rows selected.

SQL>

SQL> create tablespace OGG datafile '/u01/app/oracle/oradata/ORCL/OGGCDB01.dbf' size 1g autoextend on;

Tablespace created.

SQL>
SQL> show pdbs

    CON_ID CON_NAME                       OPEN MODE  RESTRICTED
---------- ------------------------------ ---------- ----------
         2 PDB$SEED                       READ ONLY  NO
         3 ORCLPDB                        READ WRITE NO
SQL>
SQL> alter session set container=ORCLPDB;

Session altered.

SQL>  create tablespace OGG datafile '/u01/app/oracle/oradata/ORCL/orclpdb/OGGPDB01.dbf' size 1g autoextend on;

Tablespace created.
3. Now create the user for GoldenGate in CDB and PDB.

SQL> alter session set container=cdb$root;

Session altered.

SQL> show pdbs

    CON_ID CON_NAME                       OPEN MODE  RESTRICTED
---------- ------------------------------ ---------- ----------
         2 PDB$SEED                       READ ONLY  NO
         3 ORCLPDB                        READ WRITE NO
SQL> create user c##ogg identified by C##Ogg$123 container=all default tablespace OGG temporary tablespace TEMP;

User created.

SQL> alter user c##ogg quota unlimited on OGG;

User altered.

SQL> grant set container to c##ogg container=all;

Grant succeeded.

SQL> grant alter system to c##ogg container=all;

Grant succeeded.

SQL> grant create session to c##ogg container=all;

Grant succeeded.

SQL> grant alter any table to c##ogg container=all;

Grant succeeded.

SQL> grant connect,resource to c##ogg container=all;

Grant succeeded.

SQL> exec dbms_goldengate_auth.grant_admin_privilege('c##ogg',container=>'all');


PL/SQL procedure successfully completed.

SQL>
SQL> show pdbs

    CON_ID CON_NAME                       OPEN MODE  RESTRICTED
---------- ------------------------------ ---------- ----------
         2 PDB$SEED                       READ ONLY  NO
         3 ORCLPDB                        READ WRITE NO
SQL>
SQL> alter session set container=ORCLPDB;

Session altered.


SQL> create user ogg identified by OgG##123 container=current default tablespace OGG temporary tablespace TEMP;

User created.

SQL> grant create session to ogg container=current;

Grant succeeded.

SQL> grant alter any table to ogg container=current;

Grant succeeded.

SQL> grant connect,resource to ogg container=current;

Grant succeeded.

SQL> exec dbms_goldengate_auth.grant_admin_privilege('ogg');

PL/SQL procedure successfully completed.

SQL>

4. Now login to GoldenGate Console and make database connection.

Click on DB Connection and then click + sign.

Provide the Credential Domain & Alias and user id & its password. Use TNS alias which is configured. Last click on Submit.

Now click on arrow to establish connection.

Now DB connection established successfully.
5. Now add trandata information.

Click on + at TRANDATA information section.

Now give the PDB, Schema and Table name. Then click Submit.

Now search the trandata information like below and verify.


We have successfully configured the source Oracle Database for GoldenGate Replication.

  • Now we will setup the MySQL Database for GoldenGate step by step:
  • 1. Create the database.
    
    [mysql@mysqlOGG ~]$ mysql --user=root --password
    Enter password:
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 13
    Server version: 8.4.5 MySQL Community Server - GPL
    
    Copyright (c) 2000, 2025, Oracle and/or its affiliates.
    
    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.
    
    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
    
    mysql> show databases;
    +--------------------+
    | Database           |
    +--------------------+
    | information_schema |
    | mysql              |
    | performance_schema |
    | sys                |
    +--------------------+
    4 rows in set (0.01 sec)
    
    mysql>
    mysql> create database mysqldb;
    Query OK, 1 row affected (0.01 sec)
    
    mysql> show databases;
    +--------------------+
    | Database           |
    +--------------------+
    | information_schema |
    | mysql              |
    | mysqldb            |
    | performance_schema |
    | sys                |
    +--------------------+
    5 rows in set (0.00 sec)
    
    mysql> use mysqldb;
    Database changed
    mysql>
    mysql> show databases;
    +--------------------+
    | Database           |
    +--------------------+
    | information_schema |
    | mysql              |
    | mysqldb            |
    | performance_schema |
    | sys                |
    +--------------------+
    5 rows in set (0.00 sec)
    
    mysql> select database();
    +------------+
    | database() |
    +------------+
    | mysqldb    |
    +------------+
    1 row in set (0.00 sec)
    
    
    2. Now do the required changes in /etc/my.cnf for GoldenGate.
    
    [root@mysqlOGG ~]# cat /etc/my.cnf
    # For advice on how to change settings please see
    # http://dev.mysql.com/doc/refman/8.4/en/server-configuration-defaults.html
    
    [mysqld]
    #
    # Remove leading # and set to the amount of RAM for the most important data
    # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
    # innodb_buffer_pool_size = 128M
    #
    # Remove the leading "# " to disable binary logging
    # Binary logging captures changes between backups and is enabled by
    # default. It's default setting is log_bin=binlog
    # disable_log_bin
    #
    # Remove leading # to set options mainly useful for reporting servers.
    # The server defaults are faster for transactions and fast SELECTs.
    # Adjust sizes as needed, experiment to find the optimal values.
    # join_buffer_size = 128M
    # sort_buffer_size = 2M
    # read_rnd_buffer_size = 2M
    
    user=mysql
    log_bin=/u01/mysql/log_bin/myDB
    datadir=/u01/mysql/data
    tmpdir=/u01/mysql/tmpdir
    
    #datadir=/var/lib/mysql
    socket=/var/lib/mysql/mysql.sock
    
    log-error=/var/log/mysqld.log
    pid-file=/var/run/mysqld/mysqld.pid
    
    #### GG Changes####
    # Required for GoldenGate
    server-id = 2                    # Unique ID in replication topology
    binlog_format = ROW             # REQUIRED by GoldenGate
    binlog_row_image = FULL         # RECOMMENDED by GoldenGate
    
    # Disable GTID (GG for MySQL doesn’t support it)
    gtid_mode = OFF
    enforce_gtid_consistency = OFF
    
    # Optional but useful
    log_slave_updates = ON          # Only needed if this will relay changes
    [root@mysqlOGG ~]#
    
    

    Restart MySQL Database.

    [root@mysqlOGG ~]# systemctl restart mysqld [root@mysqlOGG ~]#
    3. Now create user for GoldenGate.
    
    
    [mysql@mysqlOGG ~]$ mysql --user=root --password
    Enter password:
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 9
    Server version: 8.4.5 MySQL Community Server - GPL
    
    Copyright (c) 2000, 2025, Oracle and/or its affiliates.
    
    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.
    
    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
    
    mysql>  use mysqldb;
    Database changed
    mysql> SHOW VARIABLES WHERE Variable_name IN (
        ->   'server_id', 'log_bin', 'binlog_format', 'binlog_row_image',
        ->   'gtid_mode', 'enforce_gtid_consistency', 'log_slave_updates');
    +--------------------------+-------+
    | Variable_name            | Value |
    +--------------------------+-------+
    | binlog_format            | ROW   |
    | binlog_row_image         | FULL  |
    | enforce_gtid_consistency | OFF   |
    | gtid_mode                | OFF   |
    | log_bin                  | ON    |
    | log_slave_updates        | ON    |
    | server_id                | 2     |
    +--------------------------+-------+
    7 rows in set (0.01 sec)
    
    mysql>
    mysql> SELECT CURRENT_USER();
    +----------------+
    | CURRENT_USER() |
    +----------------+
    | root@localhost |
    +----------------+
    1 row in set (0.01 sec)
    
    mysql> SELECT user, host FROM mysql.user;
    +------------------+-----------+
    | user             | host      |
    +------------------+-----------+
    | mysql.infoschema | localhost |
    | mysql.session    | localhost |
    | mysql.sys        | localhost |
    | root             | localhost |
    +------------------+-----------+
    4 rows in set (0.00 sec)
    
    
    mysql> CREATE USER 'mysqlogg'@'%' IDENTIFIED BY 'India#123';
    Query OK, 0 rows affected (0.09 sec)
    
    mysql> GRANT ALL PRIVILEGES ON *.* TO 'mysqlogg'@'%' WITH GRANT OPTION;
    Query OK, 0 rows affected (0.01 sec)
    
    mysql> FLUSH PRIVILEGES;
    Query OK, 0 rows affected (0.01 sec)
    
    mysql> SELECT user, host FROM mysql.user;
    +------------------+-----------+
    | user             | host      |
    +------------------+-----------+
    | mysqlogg         | %         |
    | mysql.infoschema | localhost |
    | mysql.session    | localhost |
    | mysql.sys        | localhost |
    | root             | localhost |
    +------------------+-----------+
    5 rows in set (0.00 sec)
    
    mysql>exit
    
    [mysql@mysqlOGG ~]$ mysql --user=mysqlogg --password
    Enter password:
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 10
    Server version: 8.4.5 MySQL Community Server - GPL
    
    Copyright (c) 2000, 2025, Oracle and/or its affiliates.
    
    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.
    
    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
    
    mysql>
    mysql>  SELECT CURRENT_USER();
    +----------------+
    | CURRENT_USER() |
    +----------------+
    | mysqlogg@%     |
    +----------------+
    1 row in set (0.00 sec)
    
    mysql> show databases;
    +--------------------+
    | Database           |
    +--------------------+
    | information_schema |
    | mysql              |
    | mysqldb            |
    | performance_schema |
    | sys                |
    +--------------------+
    5 rows in set (0.00 sec)
    
    mysql>
    
    
    4. Now create user to test replication.
    
    
    [mysql@mysqlOGG ~]$ mysql -u root -p
    Enter password:
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 11
    Server version: 8.4.5 MySQL Community Server - GPL
    
    Copyright (c) 2000, 2025, Oracle and/or its affiliates.
    
    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.
    
    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
    
    mysql>
    mysql> show databases;
    +--------------------+
    | Database           |
    +--------------------+
    | information_schema |
    | mysql              |
    | mysqldb            |
    | performance_schema |
    | sys                |
    +--------------------+
    5 rows in set (0.06 sec)
    
    mysql>
    mysql> CREATE USER 'test'@'%' IDENTIFIED BY 'India#123';
    Query OK, 0 rows affected (0.12 sec)
    
    mysql> GRANT ALL PRIVILEGES ON mysqldb.* TO 'test'@'%';
    Query OK, 0 rows affected (0.01 sec)
    
    mysql> FLUSH PRIVILEGES;
    Query OK, 0 rows affected (0.01 sec)
    
    mysql> exit
    Bye
    [mysql@mysqlOGG ~]$
    [mysql@mysqlOGG ~]$ mysql -u test -p mysqldb
    Enter password:
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 12
    Server version: 8.4.5 MySQL Community Server - GPL
    
    Copyright (c) 2000, 2025, Oracle and/or its affiliates.
    
    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.
    
    Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
    
    mysql>
    mysql> select user();
    +----------------+
    | user()         |
    +----------------+
    | test@localhost |
    +----------------+
    1 row in set (0.00 sec)
    
    mysql> select database();
    +------------+
    | database() |
    +------------+
    | mysqldb    |
    +------------+
    1 row in set (0.00 sec)
    
    mysql>
    
    

    5. Now login to GoldenGate Console and make database connection.

    Click on DB Connection and then click + sign.

    Provide the Credential Domain & Alias,Server hostname & Port and user id & its password.

    Now click on arrow to establish connection.

    Now DB connection established successfully.
    6. Now we need to add checkpoint table for replication.

    Click on Checkpoint and then click +

    Give the table name followed by the database name

    Now checkpoint table has been added.


    Thanks for visiting!!

    Tuesday, June 17, 2025

    Oracle GoldenGate 23ai Installation || MySQL

    • Introduction: Oracle GoldenGate (OGG) is a real-time data replication platform enabling seamless data integration between heterogeneous databases. It supports high throughput, minimal latency, and advanced deployment architectures. It is CDC (Change Data Capture) tool that captures committed changes from the source database transaction logs and replicates them to a target database. In this article we will be doing the installation of Oracle GoldenGate 23ai (version 23.4.1.24.05) for MySQL.

    • Prerequisites: Below are the minimum requirements for Linux environment.
      • CPU - 2core
      • RAM - 4GB
      • Disk space - 25GB
      • OS - Oracle Linux 8/9
      • MySQL ODBC Connector

    • Software Download:

    • Environment Used:
      • Hostname: mysqlOGG.oraeasy.com
      • IP: 192.168.101.6
      • OS: OL9

    • Directory Used:
      • OGG Home: /ogg/ogg23ai_ma
      • OGG Service Manager: /ogg/ogg23ai_sm
      • OGG Deployment Home: /ogg/ogg23ai_deploy

    • Now start installation step by step:
    1. Prepare OS for installation.
    
    

    Install Packages

    [root@mysqlOGG ~]# dnf install compat-openssl11 Last metadata expiration check: 0:26:18 ago on Thu 22 May 2025 12:33:52 AM IST. Dependencies resolved. ============================================================================================================================================================== Package Architecture Version Repository Size ============================================================================================================================================================== Installing: compat-openssl11 x86_64 1:1.1.1k-4.0.1.el9_0 ol9_appstream 1.5 M Transaction Summary ============================================================================================================================================================== Install 1 Package Total download size: 1.5 M Installed size: 3.7 M Is this ok [y/N]: y Downloading Packages: compat-openssl11-1.1.1k-4.0.1.el9_0.x86_64.rpm 1.6 MB/s | 1.5 MB 00:00 -------------------------------------------------------------------------------------------------------------------------------------------------------------- Total 1.6 MB/s | 1.5 MB 00:00 Oracle Linux 9 Application Stream Packages (x86_64) 5.7 MB/s | 6.2 kB 00:00 Importing GPG key 0x8D8B756F: Userid : "Oracle Linux (release key 1) " Fingerprint: 3E6D 826D 3FBA B389 C2F3 8E34 BC4D 06A0 8D8B 756F From : /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle Is this ok [y/N]: y Key imported successfully Importing GPG key 0x8B4EFBE6: Userid : "Oracle Linux (backup key 1) " Fingerprint: 9822 3175 9C74 6706 5D0C E9B2 A7DD 0708 8B4E FBE6 From : /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle Is this ok [y/N]: y Key imported successfully Running transaction check Transaction check succeeded. Running transaction test Transaction test succeeded. Running transaction Preparing : 1/1 Installing : compat-openssl11-1:1.1.1k-4.0.1.el9_0.x86_64 1/1 Running scriptlet: compat-openssl11-1:1.1.1k-4.0.1.el9_0.x86_64 1/1 Verifying : compat-openssl11-1:1.1.1k-4.0.1.el9_0.x86_64 1/1 Installed: compat-openssl11-1:1.1.1k-4.0.1.el9_0.x86_64 Complete! [root@mysqlOGG ~]# [root@mysqlOGG ~]# ls /usr/lib64/libssl.so.1.1 /usr/lib64/libssl.so.1.1 [root@mysqlOGG ~]#

    Create Oracle user & its Group

    [root@mysqlOGG ~]# groupadd -g 54321 oinstall [root@mysqlOGG ~]# groupadd -g 54322 dba [root@mysqlOGG ~]# useradd -u 54321 -g oinstall -G dba oracle [root@mysqlOGG ~]# [root@mysqlOGG ~]# passwd oracle Changing password for user oracle. New password: BAD PASSWORD: The password is shorter than 8 characters Retype new password: passwd: all authentication tokens updated successfully. [root@mysqlOGG ~]#

    Directory Creation & Ownership change

    [root@mysqlOGG ~]# mkdir -p /ogg/ogg23ai_deploy [root@mysqlOGG ~]# mkdir -p /ogg/ogg23ai_ma [root@mysqlOGG ~]# mkdir -p /ogg/ogg23ai_sm [root@mysqlOGG ~]# chown -R oracle:oinstall /u01 [root@mysqlOGG ~]# chmod -R 775 /u01 [root@mysqlOGG ~]# chown -R oracle:oinstall /ogg [root@mysqlOGG ~]# chmod -R 775 /ogg

    selinux => permissive

    [root@mysqlOGG ~]# cat /etc/selinux/config # This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing - SELinux security policy is enforced. # permissive - SELinux prints warnings instead of enforcing. # disabled - No SELinux policy is loaded. # See also: # https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/9/html/using_selinux/changing-selinux-states-and-modes_using-selinux#changing-selinux -modes-at-boot-time_changing-selinux-states-and-modes # # NOTE: Up to RHEL 8 release included, SELINUX=disabled would also # fully disable SELinux during boot. If you need a system with SELinux # fully disabled instead of SELinux running with no policy loaded, you # need to pass selinux=0 to the kernel command line. You can use grubby # to persistently set the bootloader to boot with selinux=0: # # grubby --update-kernel ALL --args selinux=0 # # To revert back to SELinux enabled: # # grubby --update-kernel ALL --remove-args selinux # SELINUX=permissive # SELINUXTYPE= can take one of these three values: # targeted - Targeted processes are protected, # minimum - Modification of targeted policy. Only selected processes are protected. # mls - Multi Level Security protection. SELINUXTYPE=targeted

    Disable firewall

    [root@mysqlOGG ~]# systemctl status firewalld ● firewalld.service - firewalld - dynamic firewall daemon Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled; preset: enabled) Active: active (running) since Thu 2025-05-22 11:39:36 IST; 46min ago Docs: man:firewalld(1) Main PID: 750 (firewalld) Tasks: 2 (limit: 21748) Memory: 40.6M CPU: 1.209s CGroup: /system.slice/firewalld.service └─750 /usr/bin/python3 -s /usr/sbin/firewalld --nofork --nopid May 22 11:39:26 mysqlOGG.oraeasy.com systemd[1]: Starting firewalld - dynamic firewall daemon... May 22 11:39:36 mysqlOGG.oraeasy.com systemd[1]: Started firewalld - dynamic firewall daemon. [root@mysqlOGG ~]# [root@mysqlOGG ~]# systemctl stop firewalld [root@mysqlOGG ~]# [root@mysqlOGG ~]# systemctl disable firewalld Removed "/etc/systemd/system/multi-user.target.wants/firewalld.service". Removed "/etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service".
    2. Now install & configure MySQL ODBC Connector.
    
    

    Installed the requited packages and verify them

    [root@mysqlOGG ~]# dnf -y install unixODBC Last metadata expiration check: 0:01:55 ago on Mon 02 Jun 2025 04:18:41 PM IST. Package unixODBC-2.3.9-4.el9.x86_64 is already installed. Dependencies resolved. Nothing to do. Complete! [root@mysqlOGG ~]# dnf list installed | grep -i odbc python3-pyodbc.x86_64 4.0.30-4.el9 @AppStream unixODBC.x86_64 2.3.9-4.el9 @AppStream [root@mysqlOGG ~]# [root@mysqlOGG ~]# dnf install mysql-connector-odbc Last metadata expiration check: 0:04:49 ago on Mon 02 Jun 2025 04:18:41 PM IST. Dependencies resolved. ============================================================================================================================================================== Package Architecture Version Repository Size ============================================================================================================================================================== Installing: mysql-connector-odbc x86_64 9.3.0-1.el9 mysql-connectors-community 6.2 M Transaction Summary ============================================================================================================================================================== Install 1 Package Total download size: 6.2 M Installed size: 55 M Is this ok [y/N]: y Downloading Packages: mysql-connector-odbc-9.3.0-1.el9.x86_64.rpm 2.3 MB/s | 6.2 MB 00:02 -------------------------------------------------------------------------------------------------------------------------------------------------------------- Total 2.2 MB/s | 6.2 MB 00:02 Running transaction check Transaction check succeeded. Running transaction test Transaction test succeeded. Running transaction Preparing : 1/1 Installing : mysql-connector-odbc-9.3.0-1.el9.x86_64 1/1 Running scriptlet: mysql-connector-odbc-9.3.0-1.el9.x86_64 1/1 Success: Usage count is 1 Success: Usage count is 1 Verifying : mysql-connector-odbc-9.3.0-1.el9.x86_64 1/1 Installed: mysql-connector-odbc-9.3.0-1.el9.x86_64 Complete! [root@mysqlOGG ~]# [root@mysqlOGG ~]# odbcinst -q -d [PostgreSQL] [MySQL] [MySQL-5] [FreeTDS] [MariaDB] [MySQL ODBC 9.3 Unicode Driver] [MySQL ODBC 9.3 ANSI Driver] [root@mysqlOGG ~]#

    Configure odbc.ini file. Here we are using same server for MySQL DB.

    [root@mysqlOGG ~]# cat /etc/odbc.ini [mysqldb] Description=MySQL Local ODBC Connection Driver=MySQL ODBC 9.3 Unicode Driver Server=mysqlOGG.oraeasy.com Port=3306 User=mysqlogg Password=India#123 Database=mysqldb Option=3 [root@mysqlOGG ~]# ls -l /etc/odbc.ini -rw-r--r--. 1 root root 184 Jun 2 16:40 /etc/odbc.ini [oracle@mysqlOGG ~]$ isql -v mysqldb mysqlogg India#123 +---------------------------------------+ | Connected! | | | | sql-statement | | help [tablename] | | quit | | | +---------------------------------------+ SQL> show databases; +-----------------------------------------------------------------+ | Database | +-----------------------------------------------------------------+ | information_schema | | mysql | | mysqldb | | performance_schema | | sys | +-----------------------------------------------------------------+ SQLRowCount returns 5 5 rows fetched SQL> [oracle@mysqlOGG ~]$
    3. Now place & unzip the OGG software.
    
    [oracle@mysqlOGG oggsoft]$ pwd
    /u01/oggsoft
    [oracle@mysqlOGG oggsoft]$ ls -lrth
    total 490M
    -rw-r--r--. 1 oracle oinstall 490M May 22 00:09 OGG_MYSQL_V1043063-01.zip
    [oracle@mysqlOGG oggsoft]$
    [oracle@mysqlOGG oggsoft]$ unzip OGG_MYSQL_V1043063-01.zip
    
    [oracle@mysqlOGG oggsoft]$ ls
    ggs_Linux_x64_MySQL_services_shiphome  META-INF  OGG-23ai-README.txt  OGGCORE_Release_Notes_23.4.2.24.06.pdf  OGG_MYSQL_V1043063-01.zip
    
    4. Now start the OGG installation.
    
    [oracle@mysqlOGG oggsoft]$ cd ggs_Linux_x64_MySQL_services_shiphome/Disk1/
    [oracle@mysqlOGG Disk1]$ ls
    install  response  runInstaller  stage
    
    [oracle@mysqlOGG Disk1]$ ./runInstaller
    Starting Oracle Universal Installer...
    
    Checking Temp space: must be greater than 120 MB.   Actual 3693 MB    Passed
    Checking swap space: must be greater than 150 MB.   Actual 4095 MB    Passed
    Checking monitor: must be configured to display at least 256 colors.    Actual 16777216    Passed
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2025-05-22_12-12-37AM. Please wait ...[oracle@mysqlOGG Disk1]$
    
    
    Now a GUI window will appear. Follow the instructions:
    Click Next

    Provide OGG Home /ogg/ogg23ai_ma

    Click Next

    Click Install



    Login with root user and run the script. Then click OK
    
    [root@mysqlOGG ~]# /ogg/oraInventory/orainstRoot.sh
    Changing permissions of /ogg/oraInventory.
    Adding read,write permissions for group.
    Removing read,write,execute permissions for world.
    
    Changing groupname of /ogg/oraInventory to oinstall.
    The execution of the script is complete.
    [root@mysqlOGG ~]#
    

    Click Close

    5. Now post Installation of OGG, we will proceed to set up deployments and create a service manager using the OGGCA (Oracle GoldenGate Configuration Assistant) wizard.
    
    [oracle@mysqlOGG ogg23ai_ma]$ cd /ogg/ogg23ai_ma/
    [oracle@mysqlOGG ogg23ai_ma]$ ls
    bin  deinstall  diagnostics  include  install  inventory  jdk  jlib  lib  OPatch  oraInst.loc  oui  srvm
    [oracle@mysqlOGG ogg23ai_ma]$
    [oracle@mysqlOGG ogg23ai_ma]$ cd bin/
    [oracle@mysqlOGG ogg23ai_ma]$ ls
    adminclient  cachefiledump  chkptdump      convchk  defgen       distsrvr  extract  logdump   oggerr  pmsrvr    replicat  ServiceManager  XAGTask
    adminsrvr    checkprm       ConfigService  convprm  diagnostics  emsclnt   keygen   oggca.sh  orapki  recvsrvr  retrace   trailscan
    [oracle@mysqlOGG ogg23ai_ma]$ ./oggca.sh
    
    
    Now OGGCA GUI window will appear. Follow the instructions:

    Provide the Software Home, Service Manager Home, Hostname/IP and Port

    Provide the credential to access OGG console.

    Provide the Deployment Name, Deployment Home, Hostname/IP and Port

    Check the box and click Next

    Click Finish



    Click Ok

    Login with root user and run the script. Then click OK
    
    [root@mysqlOGG ~]# /ogg/ogg23ai_sm/bin/registerServiceManager.sh
    Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
    ----------------------------------------------------
         Oracle GoldenGate Install As Service Script
    ----------------------------------------------------
    OGG_HOME=/ogg/ogg23ai_ma
    OGG_CONF_HOME=/ogg/ogg23ai_sm/etc/conf
    OGG_VAR_HOME=/ogg/ogg23ai_sm/var
    OGG_USER=oracle
    Running OracleGoldenGateInstall.sh...
    Created symlink /etc/systemd/system/multi-user.target.wants/OracleGoldenGate.service → /etc/systemd/system/OracleGoldenGate.service.
    [root@mysqlOGG ~]#
    

    Click on Close

    6. Now check the OGG service status on server.
    
    [oracle@mysqlOGG ~]$ systemctl status OracleGoldenGate
    ● OracleGoldenGate.service - Oracle GoldenGate Service Manager
         Loaded: loaded (/etc/systemd/system/OracleGoldenGate.service; enabled; preset: disabled)
         Active: active (running) since Sun 2025-05-22 11:33:52 IST; 14min ago
       Main PID: 656 (ServiceManager)
          Tasks: 111 (limit: 15712)
         Memory: 160.2M
            CPU: 40.601s
         CGroup: /system.slice/OracleGoldenGate.service
                 ├─ 656 /ogg/ogg23ai_ma/bin/ServiceManager --inventory "'/ogg/ogg23ai_sm/etc/conf'"
                 ├─3586 /ogg/ogg23ai_ma/bin/adminsrvr --config /ogg/ogg23ai_sm/var/run/OggMySQL-adminsrvr-config.dat
                 ├─3588 /ogg/ogg23ai_ma/bin/recvsrvr --config /ogg/ogg23ai_sm/var/run/OggMySQL-recvsrvr-config.dat
                 ├─3590 /ogg/ogg23ai_ma/bin/distsrvr --config /ogg/ogg23ai_sm/var/run/OggMySQL-distsrvr-config.dat
                 └─3592 /ogg/ogg23ai_ma/bin/pmsrvr --config /ogg/ogg23ai_sm/var/run/OggMySQL-pmsrvr-config.dat
    [oracle@mysqlOGG ~]$
    [oracle@mysqlOGG ~]$ ps -ef|grep ogg23ai
    oracle       656       1  1 11:33 ?        00:00:09 /ogg/ogg23ai_ma/bin/ServiceManager --inventory '/ogg/ogg23ai_sm/etc/conf'
    oracle      3586     656  0 11:34 ?        00:00:03 /ogg/ogg23ai_ma/bin/adminsrvr --config /ogg/ogg23ai_sm/var/run/OggMySQL-adminsrvr-config.dat
    oracle      3588     656  0 11:34 ?        00:00:03 /ogg/ogg23ai_ma/bin/recvsrvr --config /ogg/ogg23ai_sm/var/run/OggMySQL-recvsrvr-config.dat
    oracle      3590     656  1 11:34 ?        00:00:12 /ogg/ogg23ai_ma/bin/distsrvr --config /ogg/ogg23ai_sm/var/run/OggMySQL-distsrvr-config.dat
    oracle      3592     656  1 11:34 ?        00:00:12 /ogg/ogg23ai_ma/bin/pmsrvr --config /ogg/ogg23ai_sm/var/run/OggMySQL-pmsrvr-config.dat
    oracle      5274    5095  0 11:48 pts/1    00:00:00 grep --color=auto ogg23ai
    [oracle@mysqlOGG ~]$
    
    
    
    7. Now do the login on below URLs with configured credentials.
    http://192.168.101.6:7801 ==> Service Manager
    http://192.168.101.6:7803 ==> Deployment Services

    http://192.168.101.9:7801


    http://192.168.101.9:7803



    Thanks for visiting!!

    Tuesday, June 10, 2025

    Oracle GoldenGate 23ai Installation || Oracle

    • Introduction: Oracle GoldenGate (OGG) is a real-time data replication platform enabling seamless data integration between heterogeneous databases. It supports high throughput, minimal latency, and advanced deployment architectures. It is CDC (Change Data Capture) tool that captures committed changes from the source database transaction logs and replicates them to a target database. In this article we will be doing the installation of Oracle GoldenGate 23ai (version 23.4.1.24.05) for Oracle.

    • Prerequisites: Below are the minimum requirements for Linux environment.
      • CPU - 2core
      • RAM - 4GB
      • Disk space - 25GB
      • OS - Oracle Linux 8/9
      • Latest Oracle Instant client

    • Software Download:

    • Environment Used:
      • Hostname: ogg.oraeasy.com
      • IP: 192.168.101.9
      • OS: OL9

    • Directory Used:
      • Oracle Client Home: /u01/app/instantclient_23_7
      • OGG Home: /ogg/ogg23ai_ma
      • OGG Service Manager: /ogg/ogg23ai_sm
      • OGG Deployment Home: /ogg/ogg23ai_deploy

    • Now start installation step by step:
    1. Prepare OS for installation
    
    

    Install Packages

    [root@ogg ~]# dnf install compat-openssl11 Last metadata expiration check: 0:26:18 ago on Thu 20 May 2025 12:33:52 AM IST. Dependencies resolved. ============================================================================================================================================================== Package Architecture Version Repository Size ============================================================================================================================================================== Installing: compat-openssl11 x86_64 1:1.1.1k-4.0.1.el9_0 ol9_appstream 1.5 M Transaction Summary ============================================================================================================================================================== Install 1 Package Total download size: 1.5 M Installed size: 3.7 M Is this ok [y/N]: y Downloading Packages: compat-openssl11-1.1.1k-4.0.1.el9_0.x86_64.rpm 1.6 MB/s | 1.5 MB 00:00 -------------------------------------------------------------------------------------------------------------------------------------------------------------- Total 1.6 MB/s | 1.5 MB 00:00 Oracle Linux 9 Application Stream Packages (x86_64) 5.7 MB/s | 6.2 kB 00:00 Importing GPG key 0x8D8B756F: Userid : "Oracle Linux (release key 1) " Fingerprint: 3E6D 826D 3FBA B389 C2F3 8E34 BC4D 06A0 8D8B 756F From : /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle Is this ok [y/N]: y Key imported successfully Importing GPG key 0x8B4EFBE6: Userid : "Oracle Linux (backup key 1) " Fingerprint: 9822 3175 9C74 6706 5D0C E9B2 A7DD 0708 8B4E FBE6 From : /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle Is this ok [y/N]: y Key imported successfully Running transaction check Transaction check succeeded. Running transaction test Transaction test succeeded. Running transaction Preparing : 1/1 Installing : compat-openssl11-1:1.1.1k-4.0.1.el9_0.x86_64 1/1 Running scriptlet: compat-openssl11-1:1.1.1k-4.0.1.el9_0.x86_64 1/1 Verifying : compat-openssl11-1:1.1.1k-4.0.1.el9_0.x86_64 1/1 Installed: compat-openssl11-1:1.1.1k-4.0.1.el9_0.x86_64 Complete!

    Create Oracle user & its Group

    [root@ogg ~]# groupadd -g 54321 oinstall [root@ogg ~]# groupadd -g 54322 dba [root@ogg ~]# useradd -u 54321 -g oinstall -G dba oracle [root@ogg ~]# passwd oracle Changing password for user oracle. New password: BAD PASSWORD: The password is shorter than 8 characters Retype new password: passwd: all authentication tokens updated successfully.

    Directory Creation & Ownership change

    [root@ogg ~]# mkdir -p /u01/app/ [root@ogg ~]# chown -R oracle:oinstall /u01 [root@ogg ~]# chmod -R 775 /u01 [root@ogg ~]# mkdir -p /ogg/ogg23ai_ma [root@ogg ~]# mkdir -p /ogg/ogg23ai_sm [root@ogg ~]# mkdir -p /ogg/ogg23ai_deploy [root@ogg ~]# chown -R oracle:oinstall /ogg [root@ogg ~]# chmod -R 775 /ogg

    selinux => permissive

    [root@ogg ~]# cat /etc/selinux/config # This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing - SELinux security policy is enforced. # permissive - SELinux prints warnings instead of enforcing. # disabled - No SELinux policy is loaded. # See also: # https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/9/html/using_selinux/changing-selinux-states-and-modes_using-selinux#changing-selinux -modes-at-boot-time_changing-selinux-states-and-modes # # NOTE: Up to RHEL 8 release included, SELINUX=disabled would also # fully disable SELinux during boot. If you need a system with SELinux # fully disabled instead of SELinux running with no policy loaded, you # need to pass selinux=0 to the kernel command line. You can use grubby # to persistently set the bootloader to boot with selinux=0: # # grubby --update-kernel ALL --args selinux=0 # # To revert back to SELinux enabled: # # grubby --update-kernel ALL --remove-args selinux # SELINUX=permissive # SELINUXTYPE= can take one of these three values: # targeted - Targeted processes are protected, # minimum - Modification of targeted policy. Only selected processes are protected. # mls - Multi Level Security protection. SELINUXTYPE=targeted

    Disable firewall

    [root@ogg ~]# systemctl status firewalld ● firewalld.service - firewalld - dynamic firewall daemon Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled; preset: enabled) Active: active (running) since Tue 2025-05-20 11:39:36 IST; 46min ago Docs: man:firewalld(1) Main PID: 750 (firewalld) Tasks: 2 (limit: 21748) Memory: 40.6M CPU: 1.209s CGroup: /system.slice/firewalld.service └─750 /usr/bin/python3 -s /usr/sbin/firewalld --nofork --nopid May 20 11:39:26 ogg.oraeasy.com systemd[1]: Starting firewalld - dynamic firewall daemon... May 20 11:39:36 ogg.oraeasy.com systemd[1]: Started firewalld - dynamic firewall daemon. [root@ogg ~]# [root@ogg ~]# [root@ogg ~]# systemctl stop firewalld [root@ogg ~]# [root@ogg ~]# [root@ogg ~]# systemctl disable firewalld Removed "/etc/systemd/system/multi-user.target.wants/firewalld.service". Removed "/etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service".
    2. Now install & configure Instant Client.
    
    

    Place software and unzip them

    [oracle@ogg app]$ pwd /u01/app [oracle@ogg app]$ ll -rw-r--r--. 1 oracle oinstall 128438949 May 20 12:38 instantclient-basic-linux.x64-23.7.0.25.01.zip -rw-r--r--. 1 oracle oinstall 5524138 May 20 12:38 instantclient-sqlplus-linux.x64-23.7.0.25.01.zip -rw-r--r--. 1 oracle oinstall 1442360 May 20 12:38 instantclient-tools-linux.x64-23.7.0.25.01.zip [oracle@ogg app]$ unzip instantclient-basic-linux.x64-23.7.0.25.01.zip [oracle@ogg app]$ unzip instantclient-sqlplus-linux.x64-23.7.0.25.01.zip [oracle@ogg app]$ unzip instantclient-tools-linux.x64-23.7.0.25.01.zip [oracle@ogg app]$ ll drwxr-xr-x. 3 oracle oinstall 4096 May 20 12:39 instantclient_23_7 -rw-r--r--. 1 oracle oinstall 128438949 May 20 12:38 instantclient-basic-linux.x64-23.7.0.25.01.zip -rw-r--r--. 1 oracle oinstall 5524138 May 20 12:38 instantclient-sqlplus-linux.x64-23.7.0.25.01.zip -rw-r--r--. 1 oracle oinstall 1442360 May 20 12:38 instantclient-tools-linux.x64-23.7.0.25.01.zip drwxr-xr-x. 2 oracle oinstall 64 May 20 12:39 META-INF

    Run below to create symbolic link

    [oracle@ogg app]$ ln -s instantclient_23_7

    Create tnsnames.ora file and add entry

    [oracle@ogg admin]$ cd /u01/app/instantclient_23_7/network/admin [oracle@ogg admin]$ cat tnsnames.ora ORCLDC = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = orcl.oraeasy.com)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = orcldc) ) ) ORCLPDB = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = orcl.oraeasy.com)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = orclpdb) ) )

    Add environmental variables and check login

    [oracle@ogg ~]$ cat .bash_profile # .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi # User specific environment and startup programs export ORACLE_HOME=/u01/app/instantclient_23_7 export TNS_ADMIN=/u01/app/instantclient_23_7/network/admin export PATH=$ORACLE_HOME:$PATH export LD_LIBRARY_PATH=$ORACLE_HOME:$LD_LIBRARY_PATH [oracle@ogg ~]$ [oracle@ogg ~]$ . .bash_profile [oracle@ogg ~]$ [oracle@ogg ~]$ sqlplus sys@ORCLDC as sysdba SQL*Plus: Release 23.0.0.0.0 - for Oracle Cloud and Engineered Systems on Fri May 20 12:21:49 2025 Version 23.7.0.25.01 Copyright (c) 1982, 2024, Oracle. All rights reserved. Enter password: Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production Version 19.27.0.0.0 SQL> show pdbs CON_ID CON_NAME OPEN MODE RESTRICTED ---------- ------------------------------ ---------- ---------- 2 PDB$SEED READ ONLY NO 3 ORCLPDB READ WRITE NO SQL>
    3. Now place & unzip the OGG software.
    
    [oracle@ogg oggsoft]$ pwd
    /u01/oggsoft
    [oracle@ogg oggsoft]$ ls -lrth
    total 490M
    -rw-r--r--. 1 oracle oinstall 490M May 22 00:09 OGG_ORACLE_V1042871-01.zip
    [oracle@ogg oggsoft]$
    [oracle@ogg oggsoft]$ unzip OGG_ORACLE_V1042871-01.zip
    [oracle@ogg oggsoft]$ ls
    fbo_ggs_Linux_x64_Oracle_services_shiphome  META-INF  OGG-23ai-README.txt  OGGCORE_Release_Notes_23.4.1.24.05.pdf  OGG_ORACLE_V1042871-01.zip
    [oracle@ogg oggsoft]$
    
    
    4. Now start the OGG installation.
    
    [oracle@ogg oggsoft]$ pwd
    /u01/oggsoft
    [oracle@ogg oggsoft]$ cd fbo_ggs_Linux_x64_Oracle_services_shiphome/Disk1/
    [oracle@ogg Disk1]$
    [oracle@ogg Disk1]$ ls
    install  response  runInstaller  stage
    [oracle@ogg Disk1]$
    [oracle@ogg Disk1]$
    [oracle@ogg Disk1]$ ./runInstaller
    Starting Oracle Universal Installer...
    
    Checking Temp space: must be greater than 120 MB.   Actual 3693 MB    Passed
    Checking swap space: must be greater than 150 MB.   Actual 4086 MB    Passed
    Checking monitor: must be configured to display at least 256 colors.    Actual 16777216    Passed
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2025-05-20_01-04-03PM. Please wait ...[oracle@ogg Disk1]$
    
    
    Now a GUI window will appear. Follow the instructions:
    Click Next

    Provide OGG Home /ogg/ogg23ai_ma

    Click Next

    Click Install


    Login with root user and run the script. Then click OK
    
    [root@ogg ~]# /u01/app/oraInventory/orainstRoot.sh
    Changing permissions of /u01/app/oraInventory.
    Adding read,write permissions for group.
    Removing read,write,execute permissions for world.
    
    Changing groupname of /u01/app/oraInventory to oinstall.
    The execution of the script is complete.
    [root@ogg ~]#
    

    Click Close

    5. Now post Installation of OGG, we will proceed to set up deployments and create a service manager using the OGGCA (Oracle GoldenGate Configuration Assistant) wizard.
    
    [oracle@ogg ~]$ cd /ogg/ogg23ai_ma/
    [oracle@ogg ogg23ai_ma]$ ls
    bin  deinstall  diagnostics  include  install  inventory  jdk  jlib  lib  OPatch  oraInst.loc  oui  srvm
    [oracle@ogg ogg23ai_ma]$
    [oracle@ogg ogg23ai_ma]$ cd bin/
    [oracle@ogg bin]$ ls
    adminclient  cachefiledump  chkptdump      convchk  defgen       distsrvr  extract  logdump   oggerr  pmsrvr    replicat  ServiceManager  XAGTask
    adminsrvr    checkprm       ConfigService  convprm  diagnostics  emsclnt   keygen   oggca.sh  orapki  recvsrvr  retrace   trailscan
    [oracle@ogg bin]$ ./oggca.sh
    
    
    Now OGGCA GUI window will appear. Follow the instructions:
    Provide the Software Home, Service Manager Home, Hostname/IP and Port

    Provide the credential to access OGG console.

    Provide the Deployment Name, Deployment Home, Hostname/IP and Port

    Check the box and click Next

    Click Finish



    Click Ok

    Login with root user and run the script. Then click OK
    
    [root@ogg ~]# /ogg/ogg23ai_sm/bin/registerServiceManager.sh
    Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
    ----------------------------------------------------
         Oracle GoldenGate Install As Service Script
    ----------------------------------------------------
    OGG_HOME=/ogg/ogg23ai_ma
    OGG_CONF_HOME=/ogg/ogg23ai_sm/etc/conf
    OGG_VAR_HOME=/ogg/ogg23ai_sm/var
    OGG_USER=oracle
    Running OracleGoldenGateInstall.sh...
    Created symlink /etc/systemd/system/multi-user.target.wants/OracleGoldenGate.service → /etc/systemd/system/OracleGoldenGate.service.
    [root@ogg ~]#
    

    Click on Close

    6. Now check the OGG service status on server.
    
    [oracle@ogg ~]$ systemctl status OracleGoldenGate
    ● OracleGoldenGate.service - Oracle GoldenGate Service Manager
         Loaded: loaded (/etc/systemd/system/OracleGoldenGate.service; enabled; preset: disabled)
         Active: active (running) since Sun 2025-05-20 12:31:00 IST; 4min 4s ago
       Main PID: 6992 (ServiceManager)
          Tasks: 111 (limit: 15712)
         Memory: 417.9M
            CPU: 16.257s
         CGroup: /system.slice/OracleGoldenGate.service
                 ├─ 6992 /ogg/ogg23ai_ma/bin/ServiceManager --inventory "'/ogg/ogg23ai_sm/etc/conf'"
                 ├─7396 /ogg/ogg23ai_ma/bin/adminsrvr --config /ogg/ogg23ai_sm/var/run/OggOracle-adminsrvr-config.dat
                 ├─7398 /ogg/ogg23ai_ma/bin/distsrvr --config /ogg/ogg23ai_sm/var/run/OggOracle-distsrvr-config.dat
                 ├─7402 /ogg/ogg23ai_ma/bin/recvsrvr --config /ogg/ogg23ai_sm/var/run/OggOracle-recvsrvr-config.dat
                 └─7400 /ogg/ogg23ai_ma/bin/pmsrvr --config /ogg/ogg23ai_sm/var/run/OggOracle-pmsrvr-config.dat
    [oracle@ogg ~]$
    
    [oracle@ogg ~]$ ps -ef|grep ogg23ai
    oracle      6992       1  1 May20 ?        00:00:02 /ogg/ogg23ai_ma/bin/ServiceManager --inventory '/ogg/ogg23ai_sm/etc/conf'
    oracle      7396    6992  0 May20 ?        00:00:01 /ogg/ogg23ai_ma/bin/adminsrvr --config /ogg/ogg23ai_sm/var/run/OggOracle-adminsrvr-config.dat
    oracle      7398    6992  5 May20 ?        00:00:06 /ogg/ogg23ai_ma/bin/distsrvr --config /ogg/ogg23ai_sm/var/run/OggOracle-distsrvr-config.dat
    oracle      7400    6992  4 May20 ?        00:00:05 /ogg/ogg23ai_ma/bin/pmsrvr --config /ogg/ogg23ai_sm/var/run/OggOracle-pmsrvr-config.dat
    oracle      7402    6992  1 May20 ?        00:00:01 /ogg/ogg23ai_ma/bin/recvsrvr --config /ogg/ogg23ai_sm/var/run/OggOracle-recvsrvr-config.dat
    oracle      7540    5386  0 00:00 pts/1    00:00:00 grep --color=auto ogg23ai
    
    
    7. Now do the login on below URLs with configured credentials.
    http://192.168.101.9:7801 ==> Service Manager
    http://192.168.101.9:7803 ==> Deployment Services

    http://192.168.101.9:7801


    http://192.168.101.9:7803

    Thanks for visiting!!