[
https://issues.apache.org/jira/browse/HBASE-1395?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
stack resolved HBASE-1395.
--------------------------
Resolution: Fixed
The issue seems to be basic ordering of dirs in CLASSPATH. Please reopen if
this is not it (I tested by doing 'ant package' and noticing UI broke. Doing
below fixed things for me):
{code}
Index: bin/hbase
===================================================================
--- bin/hbase (revision 777167)
+++ bin/hbase (working copy)
@@ -118,15 +118,16 @@
CLASSPATH=${CLASSPATH}:$HBASE_HOME/build
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
if [ -f $f ]; then
CLASSPATH=${CLASSPATH}:$f;
fi
done
-if [ -d "$HBASE_HOME/webapps" ]; then
- CLASSPATH=${CLASSPATH}:$HBASE_HOME
-fi
# Add libs to CLASSPATH
for f in $HBASE_HOME/lib/*.jar; do
{code}
> InfoServers no longer put up a UI
> ---------------------------------
>
> Key: HBASE-1395
> URL: https://issues.apache.org/jira/browse/HBASE-1395
> Project: Hadoop HBase
> Issue Type: Bug
> Environment: CentOS 5.3 x86_64, JDK 1.6.0_13-b03
> Reporter: Andrew Purtell
> Assignee: stack
> Fix For: 0.20.0
>
> Attachments: 1.png, 2.png, 3.png
>
>
> InfoServers do not work in an vanilla Hadoop 0.20 and HBase 0.20-dev
> installation. Directory listings instead of UI.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.