当前位置: 首页 > 工具软件 > share lib > 使用案例 >

jar包冲突:Found binding in [jar:file:/hadoop-2.7.2/share/hadoop/common/lib/slf4j-log4j12-1.7.10.jar

童化
2023-12-01

昨天因为要在集群上跑HBase程序的jar包,所以配置了HADOOP_CLASSPATH环境变量,但是今天启动HDFS时就开始报

错,错误信息如下:

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/opt/hadoop-2.8.5/share/hadoop/common/lib/slf4j-log4j12-1.7.10.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/opt/hbase-2.1.4/lib/client-facing-thirdparty/slf4j-log4j12-1.7.25.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移除一个即可。我移除的是HBase的,只是改了下对应的文件名,也没有删问题就解决了。
提醒:你不要觉得这种方法暴力,其实这个文件是可以共用的,只需要有一个即可(原则上是保留高版本的)。还有就是网上有那种设置HBase不去访问Hadoop的jar的,但是这种方法我试了不行,而且这种方法我觉得也不好。
 类似资料: