[elasticsearch] No log4j2 configuration file found. Using default configuration: logging only errors to the console 에러 해결하기
Elasticsearch 2017. 11. 15. 16:08elasticsearch client 라이브러를 실행 도중에 다음 에러가 발생했다.
ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console.
해결 방법은 다음 URL에 있다.
https://www.elastic.co/guide/en/elasticsearch/client/java-api/current/_log4j_2_logger.html
다음을 pom파일에 추가하고
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.9.1</version>
</dependency>
src/main/resource 디렉토리에 log4j2.properties을 추가한다.
appender.console.type = Console appender.console.name = console appender.console.layout.type = PatternLayout rootLogger.level = info rootLogger.appenderRef.console.ref = console
'Elasticsearch' 카테고리의 다른 글
[elasticsearch5] search_after 예제 (0) | 2017.11.24 |
---|---|
[elasticsearch5] _id 필드 대신 _uid (0) | 2017.11.22 |
[elasticsearch] 인덱스의 최대 필드 개수 제한 (0) | 2017.11.02 |
[일래스틱서치] “Hot-Warm” architecture - 퍼옴 (0) | 2017.09.01 |
[elasticsearch5] dynamic template (0) | 2017.08.23 |