Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 1 | #!/bin/bash |
Instrumental | 7a1817b | 2018-11-05 11:11:15 -0600 | [diff] [blame] | 2 | ######### |
| 3 | # ============LICENSE_START==================================================== |
| 4 | # org.onap.aaf |
| 5 | # =========================================================================== |
| 6 | # Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. |
| 7 | # =========================================================================== |
| 8 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | # you may not use this file except in compliance with the License. |
| 10 | # You may obtain a copy of the License at |
| 11 | # |
| 12 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | # |
| 14 | # Unless required by applicable law or agreed to in writing, software |
| 15 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | # See the License for the specific language governing permissions and |
| 18 | # limitations under the License. |
| 19 | # ============LICENSE_END==================================================== |
| 20 | # |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 21 | # |
| 22 | # Engage normal Cass Init, then check for data installation |
| 23 | # |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 24 | DIR="/opt/app/aaf/status" |
Instrumental | 50c23cc | 2018-10-31 02:40:03 -0500 | [diff] [blame] | 25 | INSTALLED_VERSION=/var/lib/cassandra/AAF_VERSION |
| 26 | AAF_INIT_DATA=/var/lib/cassandra/AAF_INIT_DATA |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 27 | |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 28 | if [ ! -e /aaf_cmd ]; then |
| 29 | ln -s /opt/app/aaf/cass_init/cmd.sh /aaf_cmd |
| 30 | chmod u+x /aaf_cmd |
| 31 | fi |
| 32 | |
Instrumental | f0ddaf2 | 2018-10-03 22:29:23 -0500 | [diff] [blame] | 33 | # Always need startup status... |
| 34 | if [ ! -e "$DIR" ]; then |
| 35 | mkdir -p "$DIR" |
Instrumental | 27afb02 | 2019-02-07 16:36:56 -0600 | [diff] [blame] | 36 | chmod 777 $DIR |
Instrumental | f0ddaf2 | 2018-10-03 22:29:23 -0500 | [diff] [blame] | 37 | fi |
| 38 | |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 39 | function status { |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 40 | echo "$@" |
Instrumental | 12414fe | 2019-01-22 10:27:32 -0600 | [diff] [blame] | 41 | echo "$@" > $DIR/aaf-cass |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 42 | } |
| 43 | |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 44 | function wait_start { |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 45 | sleep 10 |
| 46 | status wait for cassandra to start |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 47 | for CNT in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do |
| 48 | if [ -z "$(grep 'listening for CQL clients' /var/log/cassandra/system.log)" ]; then |
| 49 | echo "Waiting for Cassandra to start... Sleep 10" |
| 50 | sleep 10 |
| 51 | else |
| 52 | break |
| 53 | fi |
| 54 | done |
| 55 | } |
| 56 | |
Instrumental | f0ddaf2 | 2018-10-03 22:29:23 -0500 | [diff] [blame] | 57 | |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 58 | function wait_cql { |
| 59 | status wait for keyspace to be initialized |
| 60 | for CNT in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do |
Instrumental | 235dd9a | 2018-10-03 21:36:44 -0500 | [diff] [blame] | 61 | if [ -n "$(/usr/bin/cqlsh -e 'describe keyspaces' | grep authz)" ]; then |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 62 | break |
| 63 | else |
| 64 | echo "Waiting for Keyspaces to be loaded... Sleep 10" |
| 65 | sleep 10 |
| 66 | fi |
| 67 | done |
| 68 | } |
| 69 | |
Instrumental | f0ddaf2 | 2018-10-03 22:29:23 -0500 | [diff] [blame] | 70 | function wait_ready { |
| 71 | status wait for cassandra to be fully ready |
| 72 | for CNT in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do |
Instrumental | 12414fe | 2019-01-22 10:27:32 -0600 | [diff] [blame] | 73 | STATUS="$(cat $DIR/aaf-cass)" |
Instrumental | f0ddaf2 | 2018-10-03 22:29:23 -0500 | [diff] [blame] | 74 | if [ "$STATUS" = "ready" ]; then |
| 75 | break |
| 76 | else |
| 77 | echo "Waiting for Start, $STATUS... Sleep 10" |
| 78 | sleep 10 |
| 79 | fi |
| 80 | done |
| 81 | } |
| 82 | |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 83 | function install_cql { |
| 84 | wait_start started |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 85 | # Now, make sure data exists |
Instrumental | e66f428 | 2018-10-16 14:09:31 -0500 | [diff] [blame] | 86 | if [ ! -e $INSTALLED_VERSION ] && [ -n "$(/usr/bin/cqlsh -e 'describe keyspaces' | grep authz)" ]; then |
| 87 | /usr/bin/cqlsh -e 'DROP KEYSPACE authz' |
| 88 | fi |
| 89 | if [ -z "`/usr/bin/cqlsh -e 'describe keyspaces' | grep authz`" ]; then |
| 90 | status install |
| 91 | echo "Initializing Cassandra DB" |
Instrumental | 12414fe | 2019-01-22 10:27:32 -0600 | [diff] [blame] | 92 | echo "Docker Installed Basic Cassandra on aaf.cass. Executing the following " |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 93 | echo "NOTE: This creator provided is only a Single Instance. For more complex Cassandra, create independently" |
| 94 | echo "" |
| 95 | echo " cd /opt/app/aaf/cass_init" |
| 96 | cd /opt/app/aaf/cass_init |
| 97 | echo " cqlsh -f keyspace.cql" |
| 98 | /usr/bin/cqlsh -f keyspace.cql |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 99 | status keyspace installed |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 100 | echo " cqlsh -f init.cql" |
| 101 | /usr/bin/cqlsh -f init.cql |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 102 | status data initialized |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 103 | echo "" |
| 104 | echo "The following will give you a temporary identity with which to start working, or emergency" |
| 105 | echo " cqlsh -f temp_identity.cql" |
Instrumental | 2d18d8e | 2018-10-16 17:37:17 -0500 | [diff] [blame] | 106 | echo "casablanca" > $INSTALLED_VERSION |
Instrumental | e66f428 | 2018-10-16 14:09:31 -0500 | [diff] [blame] | 107 | else |
| 108 | echo "Cassandra DB already includes 'authz' keyspace" |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 109 | fi |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 110 | status $1 |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 111 | } |
| 112 | |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 113 | function install_onap { |
Instrumental | a939113 | 2018-10-16 12:34:12 -0500 | [diff] [blame] | 114 | echo " cd /opt/app/aaf/cass_init" |
Instrumental | 9405361 | 2018-10-08 11:27:18 -0500 | [diff] [blame] | 115 | install_cql initialized |
Instrumental | 50c23cc | 2018-10-31 02:40:03 -0500 | [diff] [blame] | 116 | if [ -e "$AAF_INIT_DATA" ]; then |
| 117 | echo "AAF Data already initialized on this Cassandra" |
| 118 | else |
| 119 | status prep data for bootstrapping |
| 120 | cd /opt/app/aaf/cass_init |
| 121 | status prep data |
| 122 | bash prep.sh |
| 123 | status push data to cassandra |
| 124 | bash push.sh |
| 125 | cd - |
| 126 | echo $(date) > $AAF_INIT_DATA |
| 127 | fi |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 128 | status ready |
| 129 | } |
| 130 | |
| 131 | case "$1" in |
| 132 | start) |
| 133 | # start install_cql in background, waiting for process to start |
| 134 | install_cql ready & |
| 135 | |
| 136 | # Startup like normal |
| 137 | echo "Cassandra Startup" |
Instrumental | 27afb02 | 2019-02-07 16:36:56 -0600 | [diff] [blame] | 138 | exec /usr/local/bin/docker-entrypoint.sh |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 139 | ;; |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 140 | wait) |
| 141 | # Wait for initialization. This can be called from Docker only as a check to make sure it is ready |
Instrumental | f0ddaf2 | 2018-10-03 22:29:23 -0500 | [diff] [blame] | 142 | wait_ready |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 143 | |
Instrumental | 1e3be60 | 2018-10-03 19:40:44 -0500 | [diff] [blame] | 144 | ;; |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 145 | onap) |
Instrumental | e66f428 | 2018-10-16 14:09:31 -0500 | [diff] [blame] | 146 | cd /opt/app/aaf/cass_init |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 147 | # start install_onap (which calls install_cql first) in background, waiting for process to start |
Instrumental | 696d9dc | 2018-10-24 19:45:47 -0500 | [diff] [blame] | 148 | install_onap & |
Instrumental | 08e9340 | 2018-10-03 08:38:52 -0500 | [diff] [blame] | 149 | |
| 150 | # Startup like normal |
| 151 | echo "Cassandra Startup" |
Instrumental | 27afb02 | 2019-02-07 16:36:56 -0600 | [diff] [blame] | 152 | exec /usr/local/bin/docker-entrypoint.sh |
Instrumental | bc299c0 | 2018-09-25 06:42:31 -0500 | [diff] [blame] | 153 | ;; |
| 154 | esac |
| 155 | |