You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2015/01/23 09:32:17 UTC

[30/50] [abbrv] incubator-kylin git commit: KYLIN-563 minor change

KYLIN-563 minor change


Project: http://git-wip-us.apache.org/repos/asf/incubator-kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-kylin/commit/2867fccd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kylin/tree/2867fccd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kylin/diff/2867fccd

Branch: refs/heads/inverted-index
Commit: 2867fccd4c401a76256c2ab76fcda25c2087a679
Parents: 1eabc21
Author: honma <ho...@ebay.com>
Authored: Thu Jan 22 18:17:56 2015 +0800
Committer: honma <ho...@ebay.com>
Committed: Thu Jan 22 18:17:56 2015 +0800

----------------------------------------------------------------------
 kylin.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/2867fccd/kylin.sh
----------------------------------------------------------------------
diff --git a/kylin.sh b/kylin.sh
index bfe5b22..d04285a 100755
--- a/kylin.sh
+++ b/kylin.sh
@@ -19,8 +19,9 @@ fi
 if [ "$1" = "start" ] ; then
         export HBASE_CLASSPATH_PREFIX=/etc/kylin:${CATALINA_HOME}/bin/bootstrap.jar:${CATALINA_HOME}/bin/tomcat-juli.jar:${CATALINA_HOME}/lib/*:$HBASE_CLASSPATH_PREFIX
         hbase -Djava.util.logging.config.file=${CATALINA_HOME}/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Dorg.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH=true -Dorg.apache.catalina.connector.CoyoteAdapter.ALLOW_BACKSLASH=true -Dspring.profiles.active=sandbox -Djava.endorsed.dirs=${CATALINA_HOME}/endorsed  -Dcatalina.base=${CATALINA_HOME} -Dcatalina.home=${CATALINA_HOME} -Djava.io.tmpdir=${CATALINA_HOME}/temp  org.apache.hadoop.util.RunJar ${CATALINA_HOME}/bin/bootstrap.jar  org.apache.catalina.startup.Bootstrap start > ${CATALINA_HOME}/logs/kylin_sandbox.log 2>&1 &
-        echo "A new tomcat is started by $USER, stop it using kylin.sh stop"
+        echo "A new Kylin instance is started by $USER, stop it using \"kylin.sh stop\""
         echo "Please visit http://<your_sandbox_ip>:7070/kylin to play with the cubes! (Useranme: ADMIN, Password: KYLIN)"
+        echo "You can check the log at ${CATALINA_HOME}/logs/kylin_sandbox.log"
 
 elif [ "$1" = "stop" ]; then
         # kill all tomcats started by current user
@@ -28,7 +29,7 @@ elif [ "$1" = "stop" ]; then
         echo "all tomcats started by $USER are killed"
 
 else
-        echo "Usage: kylin.sh start, or kylin.sh stop"
+        echo "Usage: \"kylin.sh start\", or \"kylin.sh stop\""
 
 fi