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 09:06:59 浏览: 109
这段日志提示了多个 SLF4J 绑定的问题,可能会导致日志输出异常。建议按照以下步骤进行处理:
1. 找到项目中引入的 SLF4J 相关的依赖,检查是否存在多个版本的 SLF4J 绑定。
2. 如果存在多个版本的绑定,考虑将其中一个版本的依赖排除掉,或者使用 Maven 或 Gradle 等构建工具的 Dependency Management 功能,将所有依赖的 SLF4J 版本统一。
3. 如果无法解决问题,可以参考 SLF4J 的官方文档,进行进一步的调试和处理。
相关问题
curl -x http://127.0.0.1:8888 http://www.example.com
这条命令中,`-x` 参数指定了使用的代理服务器地址和端口号,`http://127.0.0.1:8888` 表示代理服务器的地址为 `127.0.0.1`,端口号为 `8888`。`http://www.example.com` 则是要访问的目标网站。
这条命令的作用是使用代理服务器访问目标网站。如果你没有使用代理服务器,可以省略 `-x` 参数。例如:
```
curl http://www.example.com
```
这样就可以直接访问目标网站了,不需要代理服务器。
怎么删除 curl -x http://127.0.0.1:8888 http://www.example.com
`curl -x http://127.0.0.1:8888 http://www.example.com` 是一个命令,而不是文件或软件,因此无法通过删除命令来卸载它。如果你只是想停止使用代理服务器来访问 `http://www.example.com`,可以按 Ctrl+C 组合键来终止该命令,或者关闭代理服务器。
如果你想要删除 `curl` 命令本身,可以使用以下命令:
```
sudo apt-get remove curl # Ubuntu、Debian等基于apt-get的系统
```
```
sudo yum remove curl # CentOS、Red Hat等基于yum的系统
```
```
brew uninstall curl # macOS系统
```
注意,这些命令会彻底删除 `curl` 命令及其相关文件,使用前请谨慎。
相关推荐
















