-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathstop-tt
executable file
·145 lines (126 loc) · 3.18 KB
/
stop-tt
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
#!/usr/bin/bash
#
# Author: [email protected]
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
#
# LICENSE UPL 1.0
#
# Copyright (c) 2022 Oracle and/or its affiliates.
#
# Container shutdown script for Oracle TimesTen In-Memory Database.
#
# Shutsdown any automanaged database and then stops the
# TimesTen instance.
#
declare -r ttfs=/ttdb
declare -r dbdir="db"
declare -r ttinst="ttinst"
declare ttdbname
declare ttdsn
export PATH=/usr/bin:/usr/sbin
# Check the contents of /timesten and /ttdb to figure out the current
# state of the world.
getTimesTenState()
{
local tmp
local -i itmp=0
if ! cd "${ttfs}" >& /dev/null
then
echo
echo "error: unable to access '${ttfs}'"
return 1
fi
if [[ -d "${dbdir}" ]]
then
if tmp=$(ls "${dbdir}"/*.ds0 2>/dev/null)
then
itmp=$(echo "${tmp}" | wc -l)
if [[ ${itmp} -ne 1 ]]
then
echo
echo "error: multiple TimesTen databases found"
return 1
fi
ttdbname=$(echo "${tmp}" | sed -e "s?^${dbdir}/??" -e 's?.ds0$??')
fi
fi
if [[ ! -f "${ttinst}/conf/sys.odbc.ini" ]]
then
echo
echo "error: no instance sys.odbc.ini file found"
return 1
fi
if [[ "${ttdbname}" != "" ]]
then
if ! tmp=$(grep -e '\[.*\]' "${ttinst}/conf/sys.odbc.ini" | grep -v -e '#' -e '\[ODBC Data Sources\]' | grep -q -e "\[${ttdbname}\]")
then
echo
echo "error: no entry for database '${ttdbname}' in '${ttinst}/conf/sys.odbc.ini'"
return 1
fi
ttdsn="${ttdbname}"
else
ttdsn=$(grep -e '\[.*\]' "${ttinst}/conf/sys.odbc.ini" | grep -v -e '#' -e '\[ODBC Data Sources\]' | head -n 1 | sed -e 's/\[//' -e 's/\]//')
fi
return 0
}
# Shutdown the TimesTen database and then
# stop the TimesTen instance
stopTimesTen()
{
if ! cd "${ttfs}" >& /dev/null
then
echo
echo "error: unable to access '${ttfs}'"
return 1
fi
if [[ -d "${ttinst}" ]] && [[ -f "${ttinst}/bin/ttenv" ]]
then
if ! "${ttinst}/bin/ttenv" ttStatus
then
echo
echo "info: TimesTen instance is not running"
return 0
fi
else
echo
echo "error: no TimesTen instance found"
return 1
fi
if [[ "${ttdbname}" != "" ]] && [[ "${ttdsn}" != "" ]]
then
echo
echo "info: shutting down '${ttdsn}'"
"${ttinst}/bin/ttenv" ttAdmin -close "${ttdsn}"
"${ttinst}/bin/ttenv" ttAdmin -disconnect -immediate "${ttdsn}"
"${ttinst}/bin/ttenv" ttAdmin -ramUnload "${ttdsn}"
fi
echo
echo "info: stopping TimesTen instance '${ttinst}'"
"${ttinst}/bin/ttenv" ttDaemonAdmin -stop
if "${ttinst}/bin/ttenv" ttStatus
then
echo
echo "error: TimesTen instance did not shut down"
return 1
fi
return 0
}
echo
echo "info: TTSTOP start"
if ! getTimesTenState
then
echo
echo "info: TTSTOP exit 1"
exit 1
fi
if ! stopTimesTen
then
echo
echo "info: TTSTOP exit 2"
exit 2
fi
echo
echo "info: TTSTOP complete"
exit 0