Logging initialized using configuration in file:/etc/hive/hive-log4j2.properties Async: true 解决方法
时间: 2023-08-28 19:04:24 浏览: 378
这个日志信息是Hive启动时输出的,表示Hive成功地加载了log4j2的配置文件/etc/hive/hive-log4j2.properties,并且使用异步日志记录的方式进行日志记录。
这个日志信息并不是错误,而是Hive启动时的正常输出。如果你在使用Hive时遇到了其他问题,请提供更具体的错误信息,以便我能够帮助你解决问题。
相关问题
Logging initialized using configuration in file:/opt/module/hive/conf/hive-log4j2.properties Async: true
回答: 引用\[3\]中提到,日志初始化时使用了位于文件"/opt/module/hive-2.3.3/conf/hive-log4j2.properties"中的配置,并且启用了异步模式。这意味着Hive在启动时会加载该配置文件,并使用其中的设置来进行日志记录。
#### 引用[.reference_title]
- *1* *2* [hive 中安装出现的错误](https://blog.csdn.net/qq_42239069/article/details/84778126)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
- *3* [Hive(二)CentOS7.5安装Hive2.3.3](https://blog.csdn.net/weixin_39579127/article/details/113567557)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
Logging initialized using configuration in jar:file:/usr/local/apache-hive-3.1.3-bin/lib/hive-common-3.1.3.jar!/hive-log4j2.properties Async: true Exception in thread "main" java.lang.RuntimeException: java.net.ConnectException: Call From master/192.168.38.230 to master:9000 failed on connection exception: java.net.ConnectException: Connection refused; For more details see: http://wiki.apache.org/hadoop/ConnectionRefused
这也是一段日志信息,它显示了 Hive 在启动过程中使用了 hive-log4j2.properties 文件进行日志配置,并且启用了异步日志记录(Async: true)。接下来是一个异常信息,它表明在程序执行过程中出现了运行时异常,原因是连接 Hadoop 的 master 节点时出现了连接异常。具体地,在 master 节点的 9000 端口上的连接被拒绝了。建议检查网络连接是否正常,并确保 Hadoop 集群正常运行。
阅读全文