Make Container Config Strategy
[aaf/authz.git] / auth / auth-cass / docker / dinstall.sh
1 #!/bin/bash 
2 if [ -e /usr/bin/docker ]; then 
3   DOCKER=/usr/bin/docker
4 elif [ -e /usr/local/bin/docker ]; then
5   DOCKER=/usr/local/bin/docker
6 else
7   echo Docker not available in /usr/bin or /usr/local/bin
8   exit
9 fi
10
11 if [ "$($DOCKER volume ls | grep aaf_cass_data)" = "" ]; then
12   $DOCKER volume create aaf_cass_data
13   echo "Created Cassandra Volume aaf_cass_data"
14 fi
15
16 echo "Running DInstall"
17 if [ "`$DOCKER ps -a | grep aaf_cass`" == "" ]; then
18   echo "starting Cass from 'run'"
19   # NOTE: These HEAP Sizes are minimal. Not set for full organizations.
20   $DOCKER run \
21     --name aaf_cass \
22     -e HEAP_NEWSIZE=512M \
23     -e MAX_HEAP_SIZE=1024M \
24     -e CASSANDRA_DC=dc1 \
25     -e CASSANDRA_CLUSTER_NAME=osaaf \
26     --mount 'type=volume,src=aaf_cass_data,dst=/var/lib/cassandra,volume-driver=local' \
27     -d cassandra:3.11 
28   # Set on local Disk
29   # -v /opt/app/cass:/var/lib/cassandra 
30   echo "aaf_cass Starting"
31   for CNT in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do
32      if [ "`$DOCKER container logs aaf_cass | grep 'listening for CQL clients'`" == "" ]; then
33         echo "Sleep 10"
34         sleep 10
35      else 
36         break
37      fi
38   done
39   
40   echo "Running Phase 2 DInstall"
41   $DOCKER container ps
42   
43   echo "Creating /opt/app/cass_init dir on aaf_cass"
44   $DOCKER exec aaf_cass mkdir -p /opt/app/cass_init
45   echo "cp the following files to /opt/app/cass_init dir on aaf_cass"
46   ls ../src/main/cql
47   $DOCKER cp "../src/main/cql/." aaf_cass:/opt/app/cass_init
48   echo "The following files are on /opt/app/cass_init dir on aaf_cass"
49   $DOCKER exec aaf_cass ls /opt/app/cass_init
50   
51   if [ "`$DOCKER exec aaf_cass /usr/bin/cqlsh -e 'describe keyspaces' | grep authz`" == "" ]; then
52     echo "Docker Installed Basic Cassandra on aaf_cass.  Executing the following "
53     echo "NOTE: This creator provided is only a Single Instance. For more complex Cassandra, create independently"
54     echo ""
55     echo " cd /opt/app/cass_init"  
56     echo " cqlsh -f keyspace.cql"
57     echo " cqlsh -f init.cql"
58     echo " cqlsh -f osaaf.cql"
59     echo ""
60     echo "The following will give you a temporary identity with which to start working, or emergency"
61     echo " cqlsh -f temp_identity.cql"
62     echo "Create Keyspaces and Tables"
63     $DOCKER exec aaf_cass bash /usr/bin/cqlsh -f /opt/app/cass_init/keyspace.cql
64     $DOCKER exec aaf_cass bash /usr/bin/cqlsh -e 'describe keyspaces'
65     $DOCKER exec aaf_cass bash /usr/bin/cqlsh -f /opt/app/cass_init/init.cql
66     $DOCKER exec aaf_cass bash /usr/bin/cqlsh -f /opt/app/cass_init/osaaf.cql
67     $DOCKER exec aaf_cass bash /usr/bin/cqlsh -f /opt/app/cass_init/temp_identity.cql
68   fi
69 else 
70   $DOCKER start aaf_cass
71 fi