Book Image

Oracle Goldengate 12c Implementers Guide

Book Image

Oracle Goldengate 12c Implementers Guide

Overview of this book

Table of Contents (21 chapters)
Oracle GoldenGate 12c Implementer's Guide
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
GGSCI Commands
GoldenGate Installed Components
Acronyms
Index

Stopping GoldenGate processes


Now that we know how to start the Manager, Extract, and Replicat processes using GGSCI commands, let's take a look at how to stop them. Issuing a stop command will gracefully shutdown the GoldenGate processes.

  1. First, check the processes that are running in your GoldenGate Home using the following code:

    GGSCI (db12server01) 1> info all
    
    Program     Status      Group       Lag         Time Since Chkpt
    
    MANAGER     RUNNING
    EXTRACT     RUNNING     EOLTP01     00:00:00    00:00:01
    EXTRACT     RUNNING     EPMP01      00:00:00    00:00:02
    
  2. Stop all processes using a wildcard, as shown in the following code:

    GGSCI (db12server01) 2> stop *
    
    Sending STOP request to EXTRACT EOLTP01 ...
    Request processed.
    
    Sending STOP request to EXTRACT EPMP01 ...
    Request processed.
    
  3. Check the processes again using the following code:

    GGSCI (db12server01) 3> info all
    
    Program     Status      Group       Lag         Time Since Chkpt
    
    MANAGER     RUNNING
    EXTRACT     STOPPED     EOLTP01...