summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorInstrumental <jonathan.gathman@att.com>2018-05-11 13:15:28 -0500
committerInstrumental <jonathan.gathman@att.com>2018-05-11 13:15:34 -0500
commitc486733c0160bfb16bb75a008abe4e6a2616cb44 (patch)
tree39fbcb55fe3de2acd2c7b98d68e97fdcf3d6719c
parent47786841348b514f6e7fbaccf813057e7806aec9 (diff)
Kickstart Cassandra, read logs
Issue-ID: AAF-282 Change-Id: Ide0899177a02c78318b09a196872776b62a3f5fd Signed-off-by: Instrumental <jonathan.gathman@att.com>
-rw-r--r--auth/auth-cass/docker/dinstall.sh20
1 files changed, 17 insertions, 3 deletions
diff --git a/auth/auth-cass/docker/dinstall.sh b/auth/auth-cass/docker/dinstall.sh
index 0418fa81..f0c41940 100644
--- a/auth/auth-cass/docker/dinstall.sh
+++ b/auth/auth-cass/docker/dinstall.sh
@@ -1,11 +1,28 @@
#!/bin/bash
+
if [ "`docker ps -a | grep aaf_cass`" == "" ]; then
docker run --name aaf_cass -d cassandra:3.11
echo "aaf_cass Starting"
echo "Check for running Docker Container aaf_cass, then run again."
+ # we have to exit here so that the calling script can load CQL files
exit
+else
+ for CNT in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do
+ if [ "`docker container logs aaf_cass | grep 'listening for CQL clients'`" == "" ]; then
+ echo "Sleep 10"
+ sleep 10
+ else
+ YESCQL="yes"
+ break
+ fi
+ done
fi
+if [ "$YESCQL" == "" ]; then
+ echo "CQL Never started... exiting"
+ exit
+fi
+
docker exec aaf_cass mkdir -p /opt/app/cass_init
docker cp "../src/main/cql/." aaf_cass:/opt/app/cass_init
@@ -20,9 +37,6 @@ echo ""
echo "The following will give you a temporary identity with which to start working, or emergency"
echo " cqlsh -u root -p root -f temp_identity.cql"
echo "Sleeping for 20 seconds"
-sleep 20
-echo "Do a repair, to ensure Cassandra is actually running yet"
-docker exec -it aaf_cass bash -c 'nodetool repair'
echo "Create Keyspaces and Tables"
docker exec -it aaf_cass bash -c '\