X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fdistribution%2Fopendaylight%2Fsrc%2Fmain%2Fresources%2Frun.sh;h=1e903d06503c286d7a0e8b41556c826eb5d6d105;hb=48814d6a264b8f13e5db1422336d9ef25cb05fa9;hp=64f2c877f7ea60f2e87f13bb9d4b173a11d7a16d;hpb=eb36127fdefcecf5f4e1eb59a9c1e4c944feb462;p=controller.git diff --git a/opendaylight/distribution/opendaylight/src/main/resources/run.sh b/opendaylight/distribution/opendaylight/src/main/resources/run.sh index 64f2c877f7..1e903d0650 100755 --- a/opendaylight/distribution/opendaylight/src/main/resources/run.sh +++ b/opendaylight/distribution/opendaylight/src/main/resources/run.sh @@ -13,7 +13,7 @@ if [[ $platform == 'linux' ]]; then if [[ -z ${JAVA_HOME} ]]; then # Find the actual location of the Java launcher: - java_launcher=`which java` + java_launcher=`command -v java` java_launcher=`readlink -f "${java_launcher}"` # Compute the Java home from the location of the Java launcher: @@ -82,6 +82,7 @@ stopdaemon=0 statusdaemon=0 consolestart=1 dohelp=0 +jvmMaxMemory="" extraJVMOpts="" agentPath="" unknown_option=0 @@ -97,6 +98,7 @@ while true ; do -status) statusdaemon=1; shift ;; -console) shift ;; -help) dohelp=1; shift;; + -Xmx*) jvmMaxMemory="$1"; shift;; -D*) extraJVMOpts="${extraJVMOpts} $1"; shift;; -X*) extraJVMOpts="${extraJVMOpts} $1"; shift;; -agentpath:*) agentPath="$1"; shift;; @@ -114,6 +116,18 @@ if [ "${dohelp}" -eq 1 ]; then usage fi +if [ "${jvmMaxMemory}" == "" ]; then + jvmMaxMemory="-Xmx1G" + echo "*****************************************************************" + echo "JVM maximum memory was not defined. Setting maximum memory to 1G." + echo "To define the maximum memory, specify the -Xmx setting on the" + echo "command line. " + echo " e.g. ./run.sh -Xmx1G" + echo "*****************************************************************" +fi + +extraJVMOpts="${extraJVMOpts} ${jvmMaxMemory}" + # Validate debug port if [[ "${debugport}" -lt 1024 ]] || [[ "${debugport}" -gt 65535 ]]; then echo "Debug Port not in the range [1024,65535] ${debugport}" @@ -147,7 +161,7 @@ fi ######################################## # Now add to classpath the OSGi JAR ######################################## -CLASSPATH="${basedir}"/lib/org.eclipse.osgi-3.8.1.v20120830-144521.jar +CLASSPATH=${CLASSPATH}:${basedir}/lib/org.eclipse.osgi-3.8.1.v20120830-144521.jar FWCLASSPATH=file:"${basedir}"/lib/org.eclipse.osgi-3.8.1.v20120830-144521.jar ########################################