[关闭]
@tsing1226 2016-06-24T15:38:27.000000Z 字数 813 阅读 1391

hbase

启动hbase shell时出现的问题

标签: hbase SLF4J


在执行HBase Shell时经常会出现如下所示:

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/home/hadoop/hbase/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/home/hadoop/hadoop/share/hadoop/common/lib/slf4j-log4j12-1.7.10.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]

原因:发生jar包冲突了:

分别为:

file:hbase/lib/slf4j-log4j12-1.6.4.jar!/org/slf4j/impl/StaticLoggerBinder.class
file:hadoop/share/hadoop/common/lib/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class

解决方案:

移除其中一个jar包即可。
使用下面命令:

/usr/hbase/lib rm slf4j-log4j12-1.6.4.jar

问题解决
文章摘自:http://www.aboutyun.com/thread-7737-1-1.html

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注