Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- VCS
- NoSQL
- cache
- effective
- html
- 네트워크
- ajax
- Heap
- HTTP
- javascript
- nodejs
- Elk
- Linux
- reactive
- socket
- r
- Java
- mongodb
- Lombok
- redis
- AWS
- mybatis
- Static
- network
- 데이터통신
- git
- libuv
- spring
- github
- reactor
Archives
- Today
- Total
빨간색코딩
logstash 5.4 설치 본문
centos 7을 기준으로 한다. jdk8이 필요하다.
참조문서: https://www.elastic.co/guide/en/logstash/5.4/index.html
1. 설치
curl -L -O https://artifacts.elastic.co/downloads/logstash/logstash-5.4.0.tar.gz
tar -xvf logstash-5.4.0.tar.gz
cd logstash-5.4.0/bin
테스트
./logstash -e 'input { stdin { } } output { stdout {} }'
input을하면 ouput이 출력된다. -e 는 명령창에 직접 코드치는 옵션이다. localhost:9600 에 들어가보면 json이 간단히 떠있다. 종료는 ctrl+d로 한다.
{"host":"ljh.server","version":"5.4.0","http_address":"127.0.0.1:9600","id":"dd123456-f6ec-12f8-bebf-12d3ae9a1234","name":"ljh.server","build_date":"2017-04-28T18:14:40Z","build_sha":"1234bc8cf2e9ff169bf5a08b1234c62dbeb92f9b","build_snapshot":false}
2. 설정
logstash는 입출력 도구이며, input > filter > output 의 파이프라인구조를 갖는다. config/logstash.conf를 수정하여 코드를 작성하고 bin/logstash -f config/logstash.conf
를 통해 돌리면 된다.
'빅데이터' 카테고리의 다른 글
logstash grok pattern (0) | 2017.05.29 |
---|---|
엘라스틱서치(elasticsearch) 5.4 설치 (0) | 2017.05.29 |
하둡의 기본 개념 (HDFS, heartbeat, MapReduce, MapReduce job) (0) | 2017.03.23 |
클라우데라 하둡(Cloudera Hadoop) 1 (0) | 2017.01.11 |
Comments