NihalJain commented on PR #6368: URL: https://github.com/apache/hbase/pull/6368#issuecomment-2421441498
> Are the webapps found in development mode (i.e. when starting HBase from the source directory) ? Should be available since we have following code at https://github.com/apache/hbase/blob/a8fbac6e2654a898c16fea7ba962ca9b211774b9/bin/hbase#L204: ``` #add if we are in a dev environment if [ -d "$HBASE_HOME/hbase-server/target/hbase-webapps" ]; then if [ "$COMMAND" = "thrift" ] ; then add_to_cp_if_exists "${HBASE_HOME}/hbase-thrift/target" elif [ "$COMMAND" = "thrift2" ] ; then add_to_cp_if_exists "${HBASE_HOME}/hbase-thrift/target" elif [ "$COMMAND" = "rest" ] ; then add_to_cp_if_exists "${HBASE_HOME}/hbase-rest/target" else add_to_cp_if_exists "${HBASE_HOME}/hbase-server/target" # Needed for GetJavaProperty check below add_to_cp_if_exists "${HBASE_HOME}/hbase-server/target/classes" fi fi ``` Have never tried launching hbase from source directory. Let me try that as well. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@hbase.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org