Change log4j2 configuration
[sdnc/oam.git] / installation / dmaap-listener / src / main / scripts / start-dmaap-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=dmaap-listener
28
29 DMAAPLISTENERROOT=${DMAAPLISTENERROOT:-/opt/onap/sdnc/dmaap-listener}
30 LOGDIR=${LOGDIR:-${DMAAPLISTENERROOT}/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
37 for file in ${DMAAPLISTENERROOT}/lib/*.jar
38 do
39   LISTENERCLASSPATH=$LISTENERCLASSPATH:$file
40 done
41
42 echo "Starting dmaap-listener"
43 cd ${DMAAPLISTENERROOT}
44 exec ${JAVA} ${JAVA_OPTS} -Dlog4j.configurationFile=${PROPERTY_DIR}/log4j2.xml -jar ${DMAAPLISTENERROOT}/lib/dmaap-listener*.jar dmaap-listener.properties -cp ${LISTENERCLASSPATH}
45
46
47