You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chukwa.apache.org by ey...@apache.org on 2014/08/16 19:05:53 UTC

svn commit: r1618384 - in /chukwa/branches/chukwa-0.6: CHANGES.txt bin/start-chukwa.sh bin/stop-chukwa.sh

Author: eyang
Date: Sat Aug 16 17:05:53 2014
New Revision: 1618384

URL: http://svn.apache.org/r1618384
Log:
CHUKWA-728. Update start/stop scripts to essential components.  (Eric Yang)

Modified:
    chukwa/branches/chukwa-0.6/CHANGES.txt
    chukwa/branches/chukwa-0.6/bin/start-chukwa.sh
    chukwa/branches/chukwa-0.6/bin/stop-chukwa.sh

Modified: chukwa/branches/chukwa-0.6/CHANGES.txt
URL: http://svn.apache.org/viewvc/chukwa/branches/chukwa-0.6/CHANGES.txt?rev=1618384&r1=1618383&r2=1618384&view=diff
==============================================================================
--- chukwa/branches/chukwa-0.6/CHANGES.txt (original)
+++ chukwa/branches/chukwa-0.6/CHANGES.txt Sat Aug 16 17:05:53 2014
@@ -74,6 +74,8 @@ Release 0.6 - Unreleased
 
   BUGS
 
+    CHUKWA-728. Update start/stop scripts to essential components.  (Eric Yang)
+
     CHUKWA-726. Reduce SocketAdaptor test case timer delay from 120 to 10 seconds.  (Eric Yang)
 
     CHUKWA-725. Remove Solr config file from license scanning.  (Eric Yang)

Modified: chukwa/branches/chukwa-0.6/bin/start-chukwa.sh
URL: http://svn.apache.org/viewvc/chukwa/branches/chukwa-0.6/bin/start-chukwa.sh?rev=1618384&r1=1618383&r2=1618384&view=diff
==============================================================================
--- chukwa/branches/chukwa-0.6/bin/start-chukwa.sh (original)
+++ chukwa/branches/chukwa-0.6/bin/start-chukwa.sh Sat Aug 16 17:05:53 2014
@@ -23,11 +23,11 @@ bin=`cd "$bin"; pwd`
 
 . "$bin"/../libexec/chukwa-config.sh
 
-# start collectors
-"$bin"/start-collectors.sh --config $CHUKWA_CONF_DIR
-
 # start agents
 "$bin"/start-agents.sh --config $CHUKWA_CONF_DIR
 
 # start data processors
-"$bin"/start-data-processors.sh --config $CHUKWA_CONF_DIR
+# "$bin"/start-data-processors.sh --config $CHUKWA_CONF_DIR
+
+# start hicc
+"$bin"/chukwa-daemon.sh --config $CHUKWA_CONF_DIR start hicc

Modified: chukwa/branches/chukwa-0.6/bin/stop-chukwa.sh
URL: http://svn.apache.org/viewvc/chukwa/branches/chukwa-0.6/bin/stop-chukwa.sh?rev=1618384&r1=1618383&r2=1618384&view=diff
==============================================================================
--- chukwa/branches/chukwa-0.6/bin/stop-chukwa.sh (original)
+++ chukwa/branches/chukwa-0.6/bin/stop-chukwa.sh Sat Aug 16 17:05:53 2014
@@ -23,6 +23,11 @@ bin=`cd "$bin"; pwd`
 
 . "$bin"/../libexec/chukwa-config.sh
 
-"$bin"/stop-data-processors.sh --config $CHUKWA_CONF_DIR
+# stop data processors
+# "$bin"/stop-data-processors.sh --config $CHUKWA_CONF_DIR
+
+# stop hicc
+"$bin"/chukwa-daemon.sh --config $CHUKWA_CONF_DIR stop hicc
+
+# stop agents
 "$bin"/stop-agents.sh --config $CHUKWA_CONF_DIR
-"$bin"/stop-collectors.sh --config $CHUKWA_CONF_DIR