e606585fff1a5d5ba897a6b9535fc885956548e2
[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 JAVA_HOME=${JAVA_HOME:-/usr/lib/jvm/java-7-oracle}
31 JAVA_OPTS=${JAVA_OPTS:--Dhttps.protocols=TLSv1.1,TLSv1.2}
32 JAVA=${JAVA:-${JAVA_HOME}/bin/java}
33
34
35
36 for file in ${DMAAPLISTENERROOT}/lib/*.jar
37 do
38   LISTENERCLASSPATH=$LISTENERCLASSPATH:$file
39 done
40
41 echo "Starting dmaap-listener"
42 exec ${JAVA} ${JAVA_OPTS} -Dlog4j.configurationFile=${PROPERTY_DIR}/log4j.properties -jar ${DMAAPLISTENERROOT}/lib/dmaap-listener*.jar dmaap-listener.properties -cp ${LISTENERCLASSPATH}
43
44
45