2f089489fb7d8dcc5779f21e8f423d17ec4e1064
[sdnc/northbound.git] / ueb-listener / src / main / scripts / start-ueb-listener.sh
1 #!/bin/bash
2
3 ###
4 # ============LICENSE_START=======================================================
5 # openECOMP : SDN-C
6 # ================================================================================
7 # Copyright (C) 2017 AT&T Intellectual Property. All rights
8 #                                                       reserved.
9 # ================================================================================
10 # Licensed under the Apache License, Version 2.0 (the "License");
11 # you may not use this file except in compliance with the License.
12 # You may obtain a copy of the License at
13
14 #      http://www.apache.org/licenses/LICENSE-2.0
15
16 # Unless required by applicable law or agreed to in writing, software
17 # distributed under the License is distributed on an "AS IS" BASIS,
18 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 # See the License for the specific language governing permissions and
20 # limitations under the License.
21 # ============LICENSE_END=========================================================
22 ###
23
24 PROPERTY_DIR=${PROPERTY_DIR:-/opt/sdnc/data/properties}
25
26
27 LISTENER=ueb-listener
28
29 PIDFILE=/tmp/.${LISTENER}-pid
30 UEBLISTENERROOT=${UEBLISTENERROOT:-/opt/app/ueb-listener}
31 JAVA_HOME=${JAVA_HOME:-/usr/lib/jvm/java-7-oracle}
32 JAVA_OPTS=${JAVA_OPTS:--Dhttps.protocols=TLSv1.1,TLSv1.2}
33 JAVA=${JAVA:-${JAVA_HOME}/bin/java}
34
35 # Redirect output from script to $LISTENER.out
36 exec >> ${UEBLISTENERROOT}/logs/$LISTENER.out
37 exec 2>&1
38
39 if [ -f $PIDFILE ]
40 then
41   pid=$(cat $PIDFILE)
42   if [ "$pid" != "" ]
43   then
44     if kill -0 $pid
45     then
46       echo "$LISTENER already running"
47       exit 0
48     fi
49   fi
50 fi
51
52 if [ ! -d ${UEBLISTENERROOT}/logs ]
53 then
54   mkdir ${UEBLISTENERROOT}/logs
55 fi
56
57 for file in ${UEBLISTENERROOT}/lib/*.jar
58 do
59   LISTENERCLASSPATH=$LISTENERCLASSPATH:$file
60 done
61
62 ${JAVA} ${JAVA_OPTS} -jar ${UEBLISTENERROOT}/lib/ueb-listener*.jar -Dlog4j.configuration=file:${UEBLISTENERROOT}/lib/log4j.properties -cp ${LISTENERCLASSPATH} &
63
64
65 echo $! > $PIDFILE
66
67 echo "$LISTENER started!"
68 exit 0