On Sat, Apr 12, 2014 at 7:01 AM, John Hancock wrote:
> for hbase 0.98.1 how do I find a list of jar files that I would need to add
> to HBASE_CLASSPATH in order to start a regionserver?
>
You can also use "bin/hbase classpath" to see what the classpath should be.
2014-04-12 10:55 GMT-04:00 Ted Yu :
> Assuming you deploy HBase from tar ball, bin/hbase would add lib jars
> to CLASSPATH at runtime.
>
> See the following from bin/hbase:
>
> # Add libs to CLASSPATH
> for f in $HBASE_H
Assuming you deploy HBase from tar ball, bin/hbase would add lib jars
to CLASSPATH at runtime.
See the following from bin/hbase:
# Add libs to CLASSPATH
for f in $HBASE_HOME/lib/*.jar; do
CLASSPATH=${CLASSPATH}:$f;
done
In the same file :
# HBASE_CLASSPATH Extra Java CLASSPATH entries.
Che
for hbase 0.98.1 how do I find a list of jar files that I would need to add
to HBASE_CLASSPATH in order to start a regionserver?