반응형

빅데이터/Elasticsearch 4

window10 tomcat9+filebeat7.0+logstash7.0+ ELK7.0+Kibana7.0 연동방법

tomcat로그를 ELK를 이용해서 시각화 하는 작업들을 정리한다. 1. tomcat 설치 후 log경로 확인 C:\tomcat9\logs 2. filebeat7.0 설치 후 filebeat.yml 수정 #=========================== Filebeat inputs ============================= filebeat.inputs: # Each - is an input. Most options can be set at the input level, so # you can use different inputs for various configurations. # Below are the input specific configurations. - type: log # Cha..

window10+elasticsearch sample 실행 시 오류 curl: (1) Protocol "'http" not supported or disabled in libcurl

window10+elasticsearch sample 아래 명령어를 실행시 아래와 같은 오류가 발생 하였다. curl -XPUT 'http://localhost:9200/blog/user/dilbert' -H 'Content-Type: application/json' -d '{ "name" : "Dilbert Brown" }' curl: (1) Protocol "'http" not supported or disabled in libcurl curl: (6) Could not resolve host: name curl: (3) Bad URL, colon is first character curl: (6) Could not resolve host: Dilbert Brown curl: (3) [globbing..

logstash ERROR: Unknown command '{' 오류

logstash 테스트 중.. 인터넷에 있는여러 샘플을 가지고 아래와 같이 명령어를 실행하였다. logstash -e 'input { stdin { } } output { stdout {} }' 실행시 아래와 같은 오류 발생 ERROR: Unknown command '{' 명령어중 ' 작은따옴표가 아니라 "" 큰 따옴표로 하면 정상적으로 실행이 된다. logstash -e "input { stdin { } } output { stdout {} }" 참고하시기 바랍니다.

반응형