일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 성북구맛집
- react
- 돈암동맛집
- gradle
- 자바스크립트에러처리
- npm
- 영화추천
- 통영
- 국가직
- 방이편백육분삼십성신여대
- 퇴사후공무원
- ELK
- springboot
- 뚝섬역맛집
- 성신여대맛집
- 통영에어비앤비
- 한남동맛집
- 통영예쁜카페
- 서울숲누룽지통닭구이
- 파이썬
- 통영여행
- 성신여대편백집
- 방이편백육분삼십
- 꼴뚜기회
- 공무원
- tomcat7
- JavaScript
- 한성대맛집
- 스페인여행
- ubuntu자바설치
- Today
- Total
목록ELK (15)
코린이의 기록
E: Elasticsearch 설치 $ wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.9.0-linux-x86_64.tar.gz $ tar -xzvf elasticsearch-7.9.0-linux-x86_64.tar.gz 소프트 링크 걸기 (옵션) $ sudo ln -s ./elasticsearch-7.9.0 elasticsearch 실행 $ bin/elasticsearch -d -p els.pid -d : 데몬 모드로 작동 -p : process id 를 파일로 떨굼 실행 확인 $ curl -XGET localhost:9200 또는 http://localhost:9200/ URL 링크로 확인 { "name" : "yo..
MAC OS에서 /bin/elasticsearch를 하려는데 아래와 같은 오류가 발생함. ERROR Messge : This could be due to running on an unsupported OS or distribution, missing OS libraries, or a problem with the temp directory. To bypass this problem by running Elasticsearch without machine learning functionality set 해결방법 config/elasticsearch.yml 에서 아래 설정을 추가해준다. xpack.ml.enabled: false 참고 : https://discuss.elastic.co/t/elasticsea..
* 해당 포스팅은 beat + kafka + logstash + elasticsearch + kibana에 대한 integrate 이해를 위해 작성한 것으로 tutorial 할 수 있는 예제가 아니므로 step by step으로 test를 해보고 싶으시다면 아래 링크를 참고해주세요. Integrate filebeat, kafka, logstash, elasticsearch and kibana 목차 Filebeat, Kafka, Logstash, Elasticsearch, kibana는 각각 다른 위치에 있는 수백만의 서버의 데이터를 실시간으로 분석하는데 사용된다. 주로 로그 수준 분석, 문제 추적, 데이터의 이상 징후 및 특정 발생 이벤트 알람 등에 도움이 된다. 이러한 기술을 사용하여 확장 가능한 아키..
Elasticsearch 기본 설명 참고 : https://victorydntmd.tistory.com/308?category=742451 Cluster 상태 확인 $ curl -XGET 'localhost:9200/_cat/health?v&pretty' Cluster에 있는 노드 확인 $ curl -XGET 'localhost:9200/_cat/nodes?v&pretty' Indexing : data를 추가 현재 보유하고 있는 Index 확인하기 : GET _cat/indices $ curl -XGET 'localhost:9200/_cat/indices?v&pretty' Index 생성하기 : PUT /[index] classes라는 Index를 생성해보자 $ curl -XPUT 'http://loca..
elasticsearch.yml에서 network.host를 127.0.0.1로 지정한 후 curl -XGET localhost:9200 을 날리면 잘 되는데 127.0.0.1 -> 10.20.x.x 로 바꿔서 curl -XGET 10.20.x.x:9200 을 날리면 /var/log/my-application.log에서 아래와같이 error 가 발생한다. [1] bootstrap checks failed [1]: the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must..
1. Download and install the public signing key: $ rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch 2. /etc/yum.repos.d/에 logstash.repo 파일을 만든다 그리고 아래를 그대로! 입력해야함 [logstash-7.x] name=Elastic repository for 7.x packages baseurl=https://artifacts.elastic.co/packages/7.x/yum gpgcheck=1 gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch enabled=1 autorefresh=1 type=rpm-md 3. yum..
log [02:51:42.845] [warning] You're running Kibana 7.0.0 with some different versions of Elasticsearch. Update Kibana or Elasticsearch to the same version to prevent compatibility issues: v7.0.1 @ 127.0.0.1:9200 (127.0.0.1) [root@rusdev kibana]# sudo /usr/share/kibana/bin/kibana --version 7.0.0 [root@rusdev kibana]# sudo /usr/share/elasticsearch/bin/elasticsearch --version OpenJDK 64-Bit Server ..
Prerequisite Java 8 $ brew cask install java -> 명령어를 날리면 되는데.. java12 가 설치된다... 아니 나는 8을 받고 싶다고.. 해서 찾아봤는데 아래 명령어를 쓰면 java8을 설치할 수 있다고... 근데 ... $ brew tap caskroom/versions $ brew cask install java8 Error: Cask 'java8' is unavailable: No Cask with this name exists. ㅇㅈㄹ......... 그래서 결국 직접 다운로드해서 java version 1.8로 만들어 주었다 ㅡㅡ 방법은 아래 링크 참조 https://blog.acu.pe.kr/56 근데 여기서 바로 끝난게 아니라 또 난관에 봉착함.. "Op..