Change log4j2 configuration
[sdnc/oam.git] / installation / ueb-listener / src / main / scripts / start-ueb-listener.sh
1 #!/bin/bash
2
3 ###
4 # ============LICENSE_START=======================================================
5 # ONAP : 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/onap/sdnc/data/properties}
25
26
27 LISTENER=ueb-listener
28
29 UEBLISTENERROOT=${UEBLISTENERROOT:-/opt/onap/sdnc/ueb-listener}
30 LOGDIR=${LOGDIR:-${UEBLISTENERROOT}/logs}
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
36 for file in ${UEBLISTENERROOT}/lib/*.jar
37 do
38   LISTENERCLASSPATH=$LISTENERCLASSPATH:$file
39 done
40
41 echo "Starting ueb-listener"
42 cd ${UEBLISTENERROOT}
43 exec ${JAVA} ${JAVA_OPTS} -jar ${UEBLISTENERROOT}/lib/ueb-listener*.jar -Dlog4j.configurationFile=${PROPERTY_DIR}/log4j2.xml -cp ${LISTENERCLASSPATH}
44
45
46