本文主要是介绍BD错误集锦1——[Hive]ERROR StatusLogger No log4j2 configuration file found. Using default configuration:,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
错误描述:在使用IDEA进行jdbc方式连接到hive数据仓库时,出现以下错误:
ERROR StatusLogger No log4j2 configuration file found.
问题原因:缺少log4j2.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<Configuration><Appenders><Console name="STDOUT" target="SYSTEM_OUT"><PatternLayout pattern="%d %-5p [%t] %C{2} (%F:%L) - %m%n"/></Console><RollingFile name="RollingFile" fileName="logs/strutslog1.log"filePattern="logs/$${date:yyyy-MM}/app-%d{MM-dd-yyyy}-%i.log.gz"><PatternLayout><Pattern>%d{MM-dd-yyyy} %p %c{1.} [%t] -%M-%L- %m%n</Pattern></PatternLayout><Policies><TimeBasedTriggeringPolicy /><SizeBasedTriggeringPolicy size="1 KB"/></Policies><DefaultRolloverStrategy fileIndex="max" max="2"/></RollingFile></Appenders><Loggers><Logger name="com.opensymphony.xwork2" level="WAN"/><Logger name="org.apache.struts2" level="WAN"/><Root level="warn"><AppenderRef ref="STDOUT"/></Root></Loggers></Configuration>
添加该文件到resorces下即可。
这篇关于BD错误集锦1——[Hive]ERROR StatusLogger No log4j2 configuration file found. Using default configuration:的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!