forked from oracle/docker-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runOracleGoldenGate.sh
executable file
·335 lines (301 loc) · 10.9 KB
/
runOracleGoldenGate.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
#!/bin/bash
# Copyright (c) 2017-2018 Oracle and/or its affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
#
# Since: July, 2017
# Author: Stephen Balousek <[email protected]>
# Description: Initialize and run Oracle GoldenGate in a Docker container
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
#
##
## Locate a command on the local system
##
function getCommand {
local primary=$1; shift
local alternate=$*
for check in ${alternate} ${primary}; do
command=$(command -v ${check} 2>/dev/null) && break
done
[[ -z "${command}" ]] && {
[[ ! -z "${alternate}" ]] && echo "Error: Cannot locate command ${primary} or ${alternate}" \
|| echo "Error: Cannot locate command ${primary}"
exit 1
}
eval "${primary^^}=${command}"
}
getCommand runuser
runAsUser="${RUNUSER} -u oracle --"
OGGProcesses="(adminclient|adminsrvr|distsrvr|extract|ggsci|pmsrvr|recvsrvr|replicat|server|ServiceManager)"
##
## Set some reasonable defaults
##
[[ -z "${HOSTNAME}" ]] && export HOSTNAME="$(hostname 2>/dev/null || echo 'localhost')"
[[ -z "${OGG_SCHEMA}" ]] && export OGG_SCHEMA="oggadmin"
[[ -z "${OGG_ADMIN}" ]] && export OGG_ADMIN="oggadmin"
[[ -z "${PORT_BASE}" ]] && {
case "${OGG_EDITION}" in
"standard")
export PORT_BASE=7809
;;
"microservices")
export PORT_BASE=9100
;;
esac
}
##
## Generate a random password with:
## - at least one uppercase character
## - at least one lowercase character
## - at least one digit character
##
function generatePassword {
getCommand openssl
local password="$(${OPENSSL} rand -base64 9)-$(${OPENSSL} rand -base64 3)"
if [[ "${password}" != "${password/[A-Z]/_}" && \
"${password}" != "${password/[a-z]/_}" && \
"${password}" != "${password/[0-9]/_}" ]]; then
export OGG_ADMIN_PWD="${password}"
return
fi
generatePassword
}
##
## Set up administrator password for Microservices Architecture
##
if [[ "${OGG_EDITION}" == "microservices" ]]; then
if [[ -z "${OGG_ADMIN_PWD}" ]]; then
generatePassword
echo "----------------------------------------------------------------------------------"
echo "-- Password for administrative user '${OGG_ADMIN}' is '${OGG_ADMIN_PWD}'"
echo "----------------------------------------------------------------------------------"
fi
fi
##
## Monitor a report file
##
function tailReport {
getCommand tail
local rptFile="$1"
while [[ ! -f "${rptFile}" ]]; do
sleep 1
done
${TAIL} --lines=+1 -F ${rptFile}
}
##
## Hook for launching another entrypoint in the container
## If defined, the command identified by ${BASE_COMMAND} will be run in the background.
##
function runBaseCommand {
[[ ! -z "${BASE_COMMAND}" ]] && \
${BASE_COMMAND} &
}
##
## Mark applications and shared libraries executable
##
function setExecutable {
getCommand find
${FIND} ${OGG_HOME} -type f \( -name '*.so*' -o -not -name '*.*' \) -exec chmod +x {} \;
}
##
## Check if any OGG components are running
##
function isOGGRunning {
getCommand pgrep
${PGREP} -f ${OGGProcesses} &>/dev/null
}
##
## Oracle GoldenGate Standard Edition functions
##
function createSubdirs {
echo "Create Subdirs" | ${runAsUser} ${OGG_HOME}/ggsci
}
function createDatastore {
[[ "${OGG_VERSION}" < "12.3.0.1.0" ]] && \
echo "Create Datastore MMAP" | ${runAsUser} ${OGG_HOME}/ggsci
}
function createManagerParameters {
[[ ! -f ${OGG_HOME}/dirprm/MGR.prm ]] && \
${runAsUser} bash -c "echo Port ${Port_Manager} > ${OGG_HOME}/dirprm/MGR.prm"
}
function createGlobals {
if [[ ! -f ${OGG_HOME}/GLOBALS ]]; then
${runAsUser} bash -c "echo GGSCHEMA ${OGG_SCHEMA} > ${OGG_HOME}/GLOBALS"
else
return 0
fi
}
##
## Oracle GoldenGate Microservices Architecture functions
##
function initSSL {
if [[ ! -d "${OGG_DEPLOY_BASE}/ssl" ]]; then
getCommand orapki
local deploymentName="$1"
local CommonOU="OU=GoldenGate,OU=Enterprise Replication,OU=Server Technology,O=Oracle Corp,L=Redwood Shores,ST=CA,C=US"
local orapki="${runAsUser} ${ORAPKI} -nologo"
local OGG_WALLET_PWD="${OGG_ADMIN_PWD}-A1"
local nginxCert="/etc/nginx/ogg.pem"
mkdir -p ${OGG_DEPLOY_BASE}/ssl
chown oracle:oinstall ${OGG_DEPLOY_BASE}/ssl
${runAsUser} mkdir -p ${OGG_DEPLOY_BASE}/ssl/${HOSTNAME} 2>/dev/null || return 1
${orapki} wallet create -wallet ${OGG_DEPLOY_BASE}/ssl/${HOSTNAME} -pwd "${OGG_WALLET_PWD}" -auto_login
${orapki} wallet add -wallet ${OGG_DEPLOY_BASE}/ssl/${HOSTNAME} -pwd "${OGG_WALLET_PWD}" -dn "CN=${deploymentName},${CommonOU}" -keysize 2048 -self_signed -validity 7300
chmod 644 ${nginxCert}
${orapki} wallet add -wallet ${OGG_DEPLOY_BASE}/ssl/${HOSTNAME} -pwd "${OGG_WALLET_PWD}" -trusted_cert -cert ${nginxCert}
chmod 600 ${nginxCert}
fi
}
function initShell {
if (! grep OGG_ETC_HOME "/home/oracle/.bashrc" 2>/dev/null ); then
cat<<EOF | ${runAsUser} bash -c 'cat >> /home/oracle/.bashrc'
export OGG_ETC_HOME="${OGG_DEPLOY_BASE}/${OGG_DEPLOYMENT}/etc"
export OGG_VAR_HOME="${OGG_DEPLOY_BASE}/${OGG_DEPLOYMENT}/var"
EOF
fi
}
function createDeployment {
if [[ "${OGG_SECURE}" == "true" && -z "${OGG_SERVER_WALLET}" ]]; then
OGG_SERVER_WALLET="${OGG_DEPLOY_BASE}/ssl/${HOSTNAME}"
fi
if [[ -z "${OGG_CLIENT_WALLET}" ]]; then
OGG_CLIENT_WALLET="${OGG_DEPLOY_BASE}/ssl/${HOSTNAME}"
fi
secureOption=""
if [[ ! -z "${OGG_SERVER_WALLET}" ]]; then
secureOption="${secureOption} --serverWrl=${OGG_SERVER_WALLET}"
else
secureOption="${secureOption} --nonSecure"
fi
if [[ ! -z "${OGG_CLIENT_WALLET}" ]]; then
secureOption="${secureOption} --clientWrl=${OGG_CLIENT_WALLET}"
fi
if [[ ! -z "${OGG_CLIENT_ROLE}" ]]; then
secureOption="${secureOption} --clientRole=${OGG_CLIENT_ROLE}"
fi
if [[ ! -z "${OGG_CLIENT_INFO}" ]]; then
secureOption="${secureOption} --clientInfo=${OGG_CLIENT_INFO}"
fi
initSSL ${OGG_DEPLOYMENT}
local OGG_JARFILE=$(ls -1 ${OGG_HOME}/lib/utl/install/oggsca*.jar)
chown -R oracle:oinstall "${OGG_DEPLOY_BASE}"
if [[ ! -e "${OGG_DEPLOY_BASE}/ServiceManager/etc/conf/deploymentRegistry.dat" ]]; then
getCommand java
echo "${OGG_ADMIN_PWD}" | \
${runAsUser} ${JAVA} -classpath ${OGG_JARFILE} ogg/OGGDeployment \
--action=Create --silent \
--oggHome=${OGG_HOME} \
--oggDeployHome=${OGG_DEPLOY_BASE}/ServiceManager \
--deploymentName=ServiceManager --authUser=${OGG_ADMIN} \
--serviceListeningPort=${Port_ServiceManager} --createNewServiceManager=Yes \
${secureOption}
fi
if [[ ! -e "${OGG_DEPLOY_BASE}/${OGG_DEPLOYMENT}/etc/conf/deploymentConfiguration.dat" ]]; then
getCommand java
echo "${OGG_ADMIN_PWD}" | \
${runAsUser} ${JAVA} -classpath ${OGG_JARFILE} ogg/OGGDeployment \
--action=Create --silent \
--oggHome=${OGG_HOME} \
--oggDeployHome=${OGG_DEPLOY_BASE}/${OGG_DEPLOYMENT} \
--deploymentName=${OGG_DEPLOYMENT} --authUser=${OGG_ADMIN} \
--serviceListeningPort=${Port_ServiceManager} --createNewServiceManager=No \
--portAdminSrvr=${Port_AdminServer} \
--portDistSrvr=${Port_DistributionServer} \
--portRcvrSrvr=${Port_ReceiverServer} \
--portPmSrvr=${Port_MetricsServer} --enablePmSrvr=Yes \
--portPmSrvrUdp=${Port_MetricsServerUDP} \
--ggSchema=${OGG_SCHEMA} \
${secureOption}
else
return 0
fi
}
function startReverseProxy {
if [[ ! -f "/etc/nginx/conf.d/ogg.conf" ]]; then
[[ -z "${OGG_HTTPS}" ]] && export OGG_HTTPS="${OGG_SECURE}"
[[ "${OGG_HTTPS}" == "true" ]] && SCHEME="https" || SCHEME="http"
if [[ "$(${OGG_HOME}/lib/utl/reverseproxy/ReverseProxySettings -v)" == "1.0" ]]; then
${OGG_HOME}/lib/utl/reverseproxy/ReverseProxySettings -o /etc/nginx/conf.d/ogg.conf -t nginx "${SCHEME}://127.0.0.1:${Port_ServiceManager}"
else
echo ${OGG_ADMIN_PWD} | \
${OGG_HOME}/lib/utl/reverseproxy/ReverseProxySettings -o /etc/nginx/conf.d/ogg.conf -t nginx -u ${OGG_ADMIN} "${SCHEME}://127.0.0.1:${Port_ServiceManager}"
fi
fi
getCommand scl
${SCL} enable rh-nginx18 -- nginx
}
##
## Oracle GoldenGate Standard Edition
##
Port_Manager=$(expr ${PORT_BASE})
function init_standard {
setExecutable
createSubdirs
createDatastore
createManagerParameters
createGlobals
}
function exec_standard {
local rptFile="${OGG_HOME}/dirrpt/MGR.rpt"
local prmFile="${OGG_HOME}/dirprm/MGR.prm"
${runAsUser} ${OGG_HOME}/mgr PARAMFILE ${prmFile} REPORTFILE ${rptFile} &>/dev/null &
tailReport ${rptFile}
}
function term_standard {
echo -e "\nTerminating..."
echo "Stop ER * !" | ${runAsUser} ${OGG_HOME}/ggsci
echo "Stop MGR !" | ${runAsUser} ${OGG_HOME}/ggsci
exit 1
}
##
## Oracle GoldenGate Microservices Architecture
##
Port_ServiceManager=$(expr ${PORT_BASE})
Port_AdminServer=$(expr ${PORT_BASE} + 1)
Port_DistributionServer=$(expr ${PORT_BASE} + 2)
Port_ReceiverServer=$(expr ${PORT_BASE} + 3)
Port_MetricsServer=$(expr ${PORT_BASE} + 4)
Port_MetricsServerUDP=$(expr ${PORT_BASE} + 4)
function init_microservices {
[[ -z "${OGG_DEPLOYMENT}" ]] && export OGG_DEPLOYMENT="Local"
[[ ! -z "${OGG_SERVER_WALLET}" ]] && export OGG_SECURE="true"
[[ "${OGG_SECURE}" != "true" ]] && export OGG_SECURE="false"
setExecutable
initShell
createDeployment
}
function exec_microservices {
export OGG_ETC_HOME="${OGG_DEPLOY_BASE}/ServiceManager/etc"
export OGG_VAR_HOME="${OGG_DEPLOY_BASE}/ServiceManager/var"
isOGGRunning || ${runAsUser} ${OGG_HOME}/bin/ServiceManager &
startReverseProxy
tailReport "${OGG_VAR_HOME}/log/ServiceManager.log"
}
function term_microservices {
getCommand pkill
getCommand sleep
echo ""
${PKILL} -SIGTERM ServiceManager && sleep 1
${PKILL} -SIGTERM '(adminsrvr|distsrvr|pmsrvr|recvsrvr)' && sleep 1
${PKILL} -SIGTERM '(extract|replicat)'
local timeout=8
local rc=0
while (true); do
isOGGRunning || return 0
${SLEEP} 1
timeout=$(expr ${timeout} - 1)
if [ ${timeout} -eq 0 ]; then
rc=1
break
fi
done
${PKILL} -SIGKILL ${OGGProcesses}
exit ${rc}
}
##
## Main logic
##
runBaseCommand
trap term_${OGG_EDITION} SIGTERM SIGINT
init_${OGG_EDITION} && \
exec_${OGG_EDITION}