35463b459cec17661344f920ad2b05b8bafa2f13
[policy/api.git] / testsuites / stability / src / main / resources / apisetup / config / api / bin / policy-api.sh
1 #!/bin/bash
2 #
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #      http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 # SPDX-License-Identifier: Apache-2.0
19 # ============LICENSE_END=========================================================
20 #
21
22 JAVA_HOME=/usr/lib/jvm/java-1.8-openjdk/
23 POLICY_API_HOME=/opt/app/policy/api
24 KEYSTORE="${POLICY_HOME}/etc/ssl/policy-keystore"
25 KEYSTORE_PASSWD="Pol1cy_0nap"
26 TRUSTSTORE="${POLICY_HOME}/etc/ssl/policy-truststore"
27 TRUSTSTORE_PASSWD="Pol1cy_0nap"
28
29
30 if [ "$#" -ge 1 ]; then
31     CONFIG_FILE=$1
32 else
33     CONFIG_FILE=${CONFIG_FILE}
34 fi
35
36 if [ -z "$CONFIG_FILE" ]; then
37     CONFIG_FILE="$POLICY_API_HOME/etc/defaultConfig.json"
38 fi
39
40 echo "Policy api config file: $CONFIG_FILE"
41
42 $JAVA_HOME/bin/java -cp "$POLICY_API_HOME/etc:$POLICY_API_HOME/lib/*" -Djavax.net.ssl.keyStore="$KEYSTORE" -Djavax.net.ssl.keyStorePassword="$KEYSTORE_PASSWD" -Djavax.net.ssl.trustStore="$TRUSTSTORE" -Djavax.net.ssl.trustStorePassword="$TRUSTSTORE_PASSWD" -Dcom.sun.management.jmxremote.rmi.port=9090 -Dcom.sun.management.jmxremote=true -Dcom.sun.management.jmxremote.port=9090 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.local.only=false -Djava.rmi.server.hostname=$API_HOST org.onap.policy.api.main.startstop.Main -c $CONFIG_FILE