You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@skywalking.apache.org by wu...@apache.org on 2018/03/06 04:27:20 UTC

[incubator-skywalking] branch master updated: Update webapp start script (#888)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking.git


The following commit(s) were added to refs/heads/master by this push:
     new 2fbf617  Update webapp start script (#888)
2fbf617 is described below

commit 2fbf617280cfa437e05b9fcd91727b6ad04599bf
Author: Gao Hongtao <ha...@gmail.com>
AuthorDate: Tue Mar 6 12:27:17 2018 +0800

    Update webapp start script (#888)
---
 apm-dist/bin/webappService.bat | 2 +-
 apm-dist/bin/webappService.sh  | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/apm-dist/bin/webappService.bat b/apm-dist/bin/webappService.bat
index e8d0c94..daefd06 100644
--- a/apm-dist/bin/webappService.bat
+++ b/apm-dist/bin/webappService.bat
@@ -14,5 +14,5 @@ if not defined JAVA_HOME (
  set _EXECJAVA=java
 )
 
-start "%WEBAPP_PROCESS_TITLE%" %_EXECJAVA%  -jar %JARPATH%/skywalking-webapp.jar
+start "%WEBAPP_PROCESS_TITLE%" %_EXECJAVA%  -jar %JARPATH%/skywalking-webapp.jar --server.port=8080 --collector.ribbon.listOfServers=127.0.0.1:10800
 endlocal
diff --git a/apm-dist/bin/webappService.sh b/apm-dist/bin/webappService.sh
index 07b951b..9ecb497 100644
--- a/apm-dist/bin/webappService.sh
+++ b/apm-dist/bin/webappService.sh
@@ -16,6 +16,7 @@ _RUNJAVA=${JAVA_HOME}/bin/java
 [ -z "$JAVA_HOME" ] && _RUNJAVA=java
 
 eval exec "\"$_RUNJAVA\" ${JAVA_OPTS} -jar ${JAR_PATH}/skywalking-webapp.jar \
+         --server.port=8080 --collector.ribbon.listOfServers=127.0.0.1:10800 \
         2>${WEBAPP_LOG_DIR}/webapp.log 1> /dev/null &"
 
 if [ $? -eq 0 ]; then

-- 
To stop receiving notification emails like this one, please contact
wusheng@apache.org.