You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@hbase.apache.org by John Hancock <jh...@gmail.com> on 2014/04/12 16:01:35 UTC

regionserver jar dependeces

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?

Re: regionserver jar dependeces

Posted by Stack <st...@duboce.net>.
On Sat, Apr 12, 2014 at 7:01 AM, John Hancock <jh...@gmail.com>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?
>

Re: regionserver jar dependeces

Posted by Jean-Marc Spaggiari <je...@spaggiari.org>.
You can also use "bin/hbase classpath" to see what the classpath should be.


2014-04-12 10:55 GMT-04:00 Ted Yu <yu...@gmail.com>:

> 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.
>
> Cheers
>
> On Sat, Apr 12, 2014 at 7:01 AM, John Hancock <jhancock1975@gmail.com
> >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?
> >
>

Re: regionserver jar dependeces

Posted by Ted Yu <yu...@gmail.com>.
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.

Cheers

On Sat, Apr 12, 2014 at 7:01 AM, John Hancock <jh...@gmail.com>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?
>