Correct logs/ONAP directory for debugging
[dmaap/buscontroller.git] / misc / dmaapbc
index b26952c..42225a0 100644 (file)
@@ -43,13 +43,15 @@ config() {
        else
                echo "Not creating $APP_ROOT/ok_to_exit"
        fi      
-       # comment out till certs are available
-       #if [ ! -f $APP_ROOT/misc/cert-client-init.sh ]
-       #then
-       #       echo "Did not find $APP_ROOT/misc/cert-client-init.sh to append to truststore"
-       #       exit 1
-       #fi
-       #$APP_ROOT/misc/cert-client-init.sh
+       
+       if [ ! -f $APP_ROOT/misc/cert-client-init.sh ]
+       then
+               echo "Did not find $APP_ROOT/misc/cert-client-init.sh to append to truststore"
+               exit 1
+       fi
+       $APP_ROOT/misc/cert-client-init.sh
+       . misc/havecert.tmpl > etc/havecert
+       chmod +x etc/havecert
        . misc/dmaapbc.properties.tmpl > etc/dmaapbc.properties
     . misc/PolicyEngineApi.properties.tmpl > config/PolicyEngineApi.properties
        set +x
@@ -71,14 +73,13 @@ start() {
        fi
        cd $APP_ROOT
 
-# disable until we use certs
-#      if etc/havecert
-#      then
+       if etc/havecert
+       then
                echo >/dev/null
-#      else
-#              echo No certificate file available.  Cannot start
-#              exit 0
-#      fi
+       else
+               echo No certificate file available.  Cannot start
+               exit 0
+       fi
        PIDS=`pids`
        if [ "$PIDS" != "" ]
        then
@@ -89,7 +90,7 @@ start() {
 
        # JVM flags
 #old line from Dockerfile...keep for reference only
-       FLAGS="-cp etc:lib/* -Dlog4j.configuration=etc/log4j.properties -Ddmaapbc.properties=etc/dmaapbc.properties  -Dhttps.protocols=TLSv1.2 -Dhttps.cipherSuites=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256"
+       FLAGS="-cp etc:lib/* -Dlog4j.configuration=etc/log4j.properties -Ddmaapbc.properties=etc/dmaapbc.properties  -Dlogback.configurationFile=etc/logback.xml -Dhttps.protocols=TLSv1.2 -Dhttps.cipherSuites=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256"
        #nohup java $FLAGS $MAIN </dev/null >/dev/null 2>&1 &
        nohup java $FLAGS $MAIN </dev/null  &
        sleep 5
@@ -159,13 +160,13 @@ case "$1" in
        exit 1
        ;;
 esac
-               ls -l $APP_ROOT/logs/EELF
+               ls -l $APP_ROOT/logs/ONAP
                echo "------------ tail -100 error.log ---------------"
-               tail -100  $APP_ROOT/logs/EELF/error.log
+               tail -100  $APP_ROOT/logs/ONAP/error.log
                echo "------------ tail -100 server.log ---------------"
-               tail -100  $APP_ROOT/logs/EELF/server.log
+               tail -100  $APP_ROOT/logs/ONAP/server.log
                echo "------------ tail -100 application.log ---------------"
-               tail -100 $APP_ROOT/logs/EELF/application.log
+               tail -100 $APP_ROOT/logs/ONAP/application.log
 
                echo "Check $APP_ROOT/ok_to_exit"
                while [ ! -f $APP_ROOT/ok_to_exit ]