You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2012/07/16 21:03:37 UTC

svn commit: r1362198 - /accumulo/trunk/bin/start-all.sh

Author: kturner
Date: Mon Jul 16 19:03:37 2012
New Revision: 1362198

URL: http://svn.apache.org/viewvc?rev=1362198&view=rev
Log:
ACCUMULO-623 Start monitor before starting tablet server in start all script.  Did this so that monitor may possibly recieve errors from that occur in tablet servers during startup.

Modified:
    accumulo/trunk/bin/start-all.sh

Modified: accumulo/trunk/bin/start-all.sh
URL: http://svn.apache.org/viewvc/accumulo/trunk/bin/start-all.sh?rev=1362198&r1=1362197&r2=1362198&view=diff
==============================================================================
--- accumulo/trunk/bin/start-all.sh (original)
+++ accumulo/trunk/bin/start-all.sh Mon Jul 16 19:03:37 2012
@@ -42,6 +42,8 @@ if [ "$ZOOKEEPER_VERSION" '<' "3.3.0" ] 
 	echo "WARN : Using Zookeeper $ZOOKEEPER_VERSION.  Use version 3.3.0 or greater to avoid zookeeper deadlock bug.";
 fi
 
+${bin}/start-server.sh $MONITOR monitor 
+
 if [ "$1" != "--notSlaves" ] ; then
 	${bin}/tup.sh
 fi
@@ -54,7 +56,6 @@ done
 
 ${bin}/start-server.sh $GC gc "garbage collector"
 
-${bin}/start-server.sh $MONITOR monitor 
 
 for tracer in `grep -v '^#' "$ACCUMULO_HOME/conf/tracers"`
 do