blob: 467a04a49427d1cb6a9f7d5a7e39f3e4f0fde839 [file] [log] [blame]
tom4d0c6632014-09-15 23:27:01 -07001#!/bin/bash
Pavlin Radoslavov91413792014-10-15 11:00:32 -07002# -----------------------------------------------------------------------------
tom4d0c6632014-09-15 23:27:01 -07003# Starts ONOS Apache Karaf container
Pavlin Radoslavov91413792014-10-15 11:00:32 -07004# -----------------------------------------------------------------------------
tom4d0c6632014-09-15 23:27:01 -07005
Brian O'Connor9362d882015-03-10 11:56:35 -07006# uncomment the following line for performance testing
Jian Libf7598f2018-03-20 17:30:40 +09007# export JAVA_OPTS="${JAVA_OPTS:--Xms16G -Xmx16G -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:+PrintGCDetails -XX:+PrintGCTimeStamps}"
tom5c255702014-09-18 06:57:39 -07008
JunHuy Lam39eb4292015-06-26 17:24:23 +09009# uncomment the following line for Netty TLS encryption
10# Do modify the keystore location/password and truststore location/password accordingly
11#export JAVA_OPTS="${JAVA_OPTS:--DenableNettyTLS=true -Djavax.net.ssl.keyStore=/home/ubuntu/onos.jks -Djavax.net.ssl.keyStorePassword=222222 -Djavax.net.ssl.trustStore=/home/ubuntu/onos.jks -Djavax.net.ssl.trustStorePassword=222222}"
12
Jordan Halterman62193992018-09-26 17:43:46 -070013export JAVA_OPTS=${JAVA_OPTS:--Dds.lock.timeout.milliseconds=10000}
Ray Milkeyb32da852018-05-18 15:42:16 -070014
Bob Lantz5e4d49d2016-02-25 02:26:45 -080015set -e # exit on error
16set -u # exit on undefined variable
17
18# If ONOS_HOME is set, respect its value.
19# If ONOS_HOME is not set (e.g. in the init or service environment),
20# set it based on this script's path.
Brian O'Connora57c2212016-05-06 18:04:15 -070021ONOS_HOME=${ONOS_HOME:-$(cd $(dirname $0)/.. >/dev/null 2>&1 && pwd)}
Ray Milkeyd84f89b2018-08-17 14:54:17 -070022KARAF_ARGS=server
David Bainbridgeff4fb042015-08-17 12:53:29 -070023SYS_APPS=drivers
Bob Lantz5e4d49d2016-02-25 02:26:45 -080024ONOS_APPS=${ONOS_APPS:-} # Empty means don't activate any new apps
Jian Li7343bfa2016-01-27 15:42:05 -080025
Bob Lantz5e4d49d2016-02-25 02:26:45 -080026cd $ONOS_HOME
David Bainbridgeff4fb042015-08-17 12:53:29 -070027
28# Parse out arguments destinted for karaf invocation v. arguments that
29# will be processed in line
30while [ $# -gt 0 ]; do
31 case $1 in
32 apps-clean)
33 # Deactivate all applications
34 find ${ONOS_HOME}/apps -name "active" -exec rm \{\} \;
35 ;;
36 *)
37 KARAF_ARGS+=" $1"
38 ;;
39 esac
40 shift
41done
42
43# Activate the system required applications (SYS_APPS) as well as any
44# specified applications in the var ONOS_APPS
45for app in ${SYS_APPS//,/ } ${ONOS_APPS//,/ }; do
Marc De Leenheerf8e02832017-01-17 15:33:11 -080046 if [ -d "${ONOS_HOME}/apps/org.onosproject.$app/" ]; then
47 touch ${ONOS_HOME}/apps/org.onosproject.$app/active
48 elif [ -d "${ONOS_HOME}/apps/$app" ]; then
49 touch ${ONOS_HOME}/apps/$app/active
50 else
51 echo "[WARN] Don't know how to activate $app"
52 fi
David Bainbridgeff4fb042015-08-17 12:53:29 -070053done
54
Ray Milkeyd84f89b2018-08-17 14:54:17 -070055KARAF_ARGS+=" server"
56
Bob Lantz641d5452016-03-04 19:39:17 -080057exec ${ONOS_HOME}/apache-karaf-$KARAF_VERSION/bin/karaf $KARAF_ARGS