Stopping GoldenGate processes
We have seen how to start the Manager, Extract, and Replicat processes using GGSCI commands. Let's take a look at stopping them. Issuing a stop command will gracefully shutdown the GoldenGate processes.
Firstly check which processes are running.
GGSCI (dbserver1) 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
Stop
ALL
processes, using a wildcard.GGSCI (dbserver1) 2> stop * Sending STOP request to EXTRACT EOLTP01 ... Request processed. Sending STOP request to EXTRACT EPMP01 ... Request processed.
Check the processes again.
GGSCI (dbserver1) 3> info all Program Status Group Lag Time Since Chkpt MANAGER RUNNING EXTRACT STOPPED EOLTP01 00:00:00 00:00:01 EXTRACT STOPPED EPMP01 00:00:00 00:00:02
Note that the Manager process is still...