webappService.sh 1.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

G
gaohongtao 已提交
17 18 19 20
#!/usr/bin/env sh

PRG="$0"
PRGDIR=`dirname "$PRG"`
G
gaohongtao 已提交
21
[ -z "$WEBAPP_HOME" ] && WEBAPP_HOME=`cd "$PRGDIR/.." >/dev/null; pwd`
G
gaohongtao 已提交
22

K
kezhenxu94 已提交
23
WEBAPP_LOG_DIR="${WEBAPP_LOG_DIR:-${WEBAPP_HOME}/logs}"
G
gaohongtao 已提交
24 25 26
JAVA_OPTS=" -Xms256M -Xmx512M"
JAR_PATH="${WEBAPP_HOME}/webapp"

K
kezhenxu94 已提交
27
if [ ! -d "${WEBAPP_LOG_DIR}" ]; then
G
gaohongtao 已提交
28 29 30
    mkdir -p "${WEBAPP_LOG_DIR}"
fi

31 32
LOG_FILE_LOCATION=${WEBAPP_LOG_DIR}/webapp.log

G
gaohongtao 已提交
33 34 35 36
_RUNJAVA=${JAVA_HOME}/bin/java
[ -z "$JAVA_HOME" ] && _RUNJAVA=java

eval exec "\"$_RUNJAVA\" ${JAVA_OPTS} -jar ${JAR_PATH}/skywalking-webapp.jar \
G
Gao Hongtao 已提交
37
         --spring.config.location=${JAR_PATH}/webapp.yml \
38 39
         --logging.file=${LOG_FILE_LOCATION} \
        2>${WEBAPP_LOG_DIR}/webapp-console.log 1> /dev/null &"
G
gaohongtao 已提交
40 41 42

if [ $? -eq 0 ]; then
    sleep 1
彭勇升 pengys 已提交
43
	echo "SkyWalking Web Application started successfully!"
G
gaohongtao 已提交
44
else
彭勇升 pengys 已提交
45
	echo "SkyWalking Web Application started failure!"
G
gaohongtao 已提交
46 47
	exit 1
fi