127.0.0.1: running zookeeper, logging to /usr/local/hbase/bin/../logs/hbase-atguigu-zookeeper-node11.out 127.0.0.1: SLF4J: Class path contains multiple SLF4J bindings. 127.0.0.1: 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] 127.0.0.1: SLF4J: Found binding in [jar:file:/usr/local/hbase/lib/client-facing-thirdparty/slf4j-log4j12-1.7.30.jar!/org/slf4j/impl/StaticLoggerBinder.class] 127.0.0.1: SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation. 127.0.0.1: 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. : running regionserver, logging to /usr/local/hbase/bin/../logs/hbase-atguigu-regionserver-node11.out怎么办
时间: 2023-06-23 16:06:59 浏览: 336
FTP-document.rar_fit//127.0.0.1:5050_ftb 127.0.0.1 2121_ftb:127.
这段日志提示了多个 SLF4J 绑定的问题,可能会导致日志输出异常。建议按照以下步骤进行处理:
1. 找到项目中引入的 SLF4J 相关的依赖,检查是否存在多个版本的 SLF4J 绑定。
2. 如果存在多个版本的绑定,考虑将其中一个版本的依赖排除掉,或者使用 Maven 或 Gradle 等构建工具的 Dependency Management 功能,将所有依赖的 SLF4J 版本统一。
3. 如果无法解决问题,可以参考 SLF4J 的官方文档,进行进一步的调试和处理。
阅读全文