SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/usr/local/apache-maven-3.6.3/repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/usr/local/apache-maven-3.6.3/repository/org/slf4j/slf4j-log4j12/1.7.30/slf4j-log4j12-1.7.30.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 [ch.qos.logback.classic.util.ContextSelectorStaticBinder]报错怎么解决?
时间: 2023-03-14 12:03:30 浏览: 354
SLF4J:classpath包含多个SLF4J绑定。SLF4J:在[jar:file:/usr/local/apache-maven-3.6.3/repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar!/org/slf4j/impl/StaticLoggerBinder.class]中找到绑定SLF4J:在[jar:file:/usr/local/apache-maven-3.6.3/repository/org/slf4j/slf4j-log4j12/1.7.30/slf4j-log4j12-1.7.30.jar!/org/slf4j/impl/StaticLoggerBinder.class]中找到绑定SLF4J:请参见http://www.slf4j.org/codes.html
相关问题
slf4j: class path contains multiple slf4j bindings. slf4j: found binding in [jar:file:/usr/local/hive/lib/log4j-slf4j-impl-2.10.0.jar!/org/slf4j/impl/staticloggerbinder.class] slf4j: found binding in [jar:file:/usr/local/hadoop/share/hadoop/common/lib/slf
### 回答1:
这是一个警告信息,表示在路径中包含了多个不同的Slf4j(简单日志门面)绑定。在这个例子中,一个Slf4j绑定在/usr/local/hive/lib/目录下的log4j-slf4j-impl-2.10.0.jar文件中,另一个绑定在/usr/local/hadoop/share/hadoop/common/lib/目录下的slf文件中。可能需要检查系统配置,以消除这种绑定重复的情况。
### 回答2:
4j-log4j12-1.7.25.jar!/org/slf4j/impl/StaticLoggerBinder.class]。
这个错误信息是因为在程序运行时,发现有多个SLF4J日志绑定在类路径中。SLF4J是一个简化日志系统的接口,它的目的是让应用程序能够方便地切换不同的日志实现。由于SLF4J是一个接口,而实现SLF4J的日志库有很多,例如Log4j、Logback、Java Util Logging、Commons Logging等等,这些库都可以实现SLF4J所定义的接口,因此在使用SLF4J时,需要一个SLF4J实现和一个日志库实现。
在这个错误信息中,我们可以看到有两个不同的SLF4J绑定,一个在hadoop的lib目录下的slf4j-log4j12-1.7.25.jar中,另一个则在hive的lib目录下的log4j-slf4j-impl-2.10.0.jar中。这两个绑定都包含了同样的类,因此会产生冲突。
在解决这个错误之前,需要了解应用程序使用的日志库和SLF4J实现。如果使用的是Log4j,那么可以删除hive中的log4j-slf4j-impl-2.10.0.jar,因为Log4j本身已经包含了SLF4J。如果使用的是其他日志库,可以将hadoop中的slf4j-log4j12-1.7.25.jar删除,因为其他日志库中也都包含了SLF4J。
如果应用程序必须使用两个不同的日志库,可以使用exclude命令排除不需要的库,例如在pom.xml文件中排除hadoop的slf4j-log4j12-1.7.25.jar。这样就可以避免SLF4J的多重绑定问题。
总之,在遇到SLF4J多重绑定错误时,需要了解应用程序使用的日志库和SLF4J实现,并使用适当的方法解决冲突。
### 回答3:
这个错误信息意味着项目中同时存在多个slf4j的绑定器。在这种情况下,slf4j会自动选择其中之一,但是选择哪一个并不明确。由于绑定器的实现方式可能不同,这可能会导致日志输出上的问题。因此,最好只保留一种绑定器。
在这个具体例子中,错误信息显示了两个slf4j绑定器的位置。第一个是在 "/usr/local/hive/lib/log4j-slf4j-impl-2.10.0.jar" 中,而第二个在 "/usr/local/hadoop/share/hadoop/common/lib/slf4j-log4j12-1.7.25.jar" 中。两个绑定器都与log4j有关,这意味着项目中同时使用了log4j和slf4j。
为了解决这个问题,应该确保只使用一种绑定器。在这个案例中,由于log4j-slf4j-impl-2.10.0.jar已经包含了两者的功能,因此建议删除 "/usr/local/hadoop/share/hadoop/common/lib/slf4j-log4j12-1.7.25.jar",并重新启动应用程序。
如果你在项目中使用了其他日志库,并且出现了类似的错误信息,解决方案也类似。首先,确定所有库的日志绑定器,然后选择一个主要的绑定器,删除其他绑定器,并重新启动应用程序。
[atguigu@node11 hbase]$ ./bin/start-hbase.sh SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/opt/module/hadoop-3.1.3/share/hadoop/common/lib/slf4j-log4j12-1.7.25.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/usr/local/hbase/lib/client-facing-thirdparty/slf4j-log4j12-1.7.30.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] running master, logging to /usr/local/hbase/bin/../logs/hbase-atguigu-master-node11.out SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/opt/module/hadoop-3.1.3/share/hadoop/common/lib/slf4j-log4j12-1.7.25.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/usr/local/hbase/lib/client-facing-thirdparty/slf4j-log4j12-1.7.30.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation怎么办
这个问题是因为在类路径(classpath)中出现了多个SLF4J绑定的原因。可以尝试以下解决方案:
1. 在`$HBASE_HOME/conf/hbase-env.sh`中添加以下代码:
```
export HBASE_OPTS="$HBASE_OPTS -Dorg.slf4j.simpleLogger.showMultipleLoggers=true"
```
这样可以在启动时查看具体的多绑定信息。
2. 在`$HBASE_HOME/conf/log4j.properties`中添加以下代码:
```
# Remove duplicate SLF4J bindings
log4j.logger.org.apache.hadoop.metrics2=ERROR,console
```
这样可以将日志级别调整为ERROR,从而隐藏多绑定的警告信息。
3. 如果以上两种方法均未解决问题,可以考虑移除多余的SLF4J绑定。具体方法是在HBase的类路径中只保留一个SLF4J绑定的jar包,删除其他的绑定jar包。
阅读全文