HBASE-1395 InfoServers no longer put up a UI
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@777227 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8feca37650
commit
8018305551
|
@ -153,6 +153,7 @@ Release 0.20.0 - Unreleased
|
||||||
HBASE-1272 Unreadable log messages -- "... to the only server
|
HBASE-1272 Unreadable log messages -- "... to the only server
|
||||||
localhost_1237525439599_56094" <- You'd have to be perverse
|
localhost_1237525439599_56094" <- You'd have to be perverse
|
||||||
to recognize that as a hostname, startcode, and port
|
to recognize that as a hostname, startcode, and port
|
||||||
|
HBASE-1395 InfoServers no longer put up a UI
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
||||||
|
|
|
@ -118,15 +118,16 @@ if [ -d "$HBASE_HOME/build/webapps" ]; then
|
||||||
CLASSPATH=${CLASSPATH}:$HBASE_HOME/build
|
CLASSPATH=${CLASSPATH}:$HBASE_HOME/build
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# for releases, add hbase & webapps to CLASSPATH
|
# For releases, add hbase & webapps to CLASSPATH
|
||||||
|
# Webapps must come first else it messes up Jetty
|
||||||
|
if [ -d "$HBASE_HOME/webapps" ]; then
|
||||||
|
CLASSPATH=${CLASSPATH}:$HBASE_HOME
|
||||||
|
fi
|
||||||
for f in $HBASE_HOME/hbase*.jar; do
|
for f in $HBASE_HOME/hbase*.jar; do
|
||||||
if [ -f $f ]; then
|
if [ -f $f ]; then
|
||||||
CLASSPATH=${CLASSPATH}:$f;
|
CLASSPATH=${CLASSPATH}:$f;
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
if [ -d "$HBASE_HOME/webapps" ]; then
|
|
||||||
CLASSPATH=${CLASSPATH}:$HBASE_HOME
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Add libs to CLASSPATH
|
# Add libs to CLASSPATH
|
||||||
for f in $HBASE_HOME/lib/*.jar; do
|
for f in $HBASE_HOME/lib/*.jar; do
|
||||||
|
|
Loading…
Reference in New Issue