일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 통영에어비앤비
- 공무원
- 성북구맛집
- npm
- 국가직
- 성신여대편백집
- 파이썬
- 자바스크립트에러처리
- 한남동맛집
- 통영여행
- JavaScript
- react
- 방이편백육분삼십
- ELK
- 방이편백육분삼십성신여대
- 퇴사후공무원
- ubuntu자바설치
- 통영
- 한성대맛집
- 서울숲누룽지통닭구이
- gradle
- 뚝섬역맛집
- 돈암동맛집
- springboot
- 꼴뚜기회
- 성신여대맛집
- 스페인여행
- 통영예쁜카페
- tomcat7
- 영화추천
- Today
- Total
목록ELK (15)
코린이의 기록
* Support Policy를 먼저 참고하세요 ! https://www.elastic.co/kr/support/matrix * Elasticsearch and Kibana version compatibility. 1. Download and install the public signing key: $ rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch 2. /etc/yum.repos.d/에 kibana.repo 파일을 만든다 그리고 아래를 그대로! 입력해야함 [kibana-7.x] name=Kibana repository for 7.x packages baseurl=https://artifacts.elastic.co/packages/7.x/..
prerequisite - Java 8 이상 권장 Support Policy를 먼저 참고하세요 ! https://www.elastic.co/kr/support/matrix 1. Download and install the public signing key: $ rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch 2. /etc/yum.repos.d/에 elasticsearch.repo 파일을 만든다 그리고 아래를 그대로! 입력해야함 (7.x 인 부분을 버전인가? 하고 적었는데 그게 아니였음..) [elasticsearch-7.x] name=Elasticsearch repository for 7.x packages baseurl=https://a..
$ ulimit -Sa core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited scheduling priority (-e) 0 file size (blocks, -f) unlimited pending signals (-i) 31060 max locked memory (kbytes, -l) 64 max memory size (kbytes, -m) unlimited open files (-n) 1024 pipe size (512 bytes, -p) 8 POSIX message queues (bytes, -q) 819200 real-time priority (-r) 0 stack size (kbytes, -s) 8192 cpu time (seco..
root로 elasticsearch를 실행했을때 다음과 같은 error 발생함. [root@rusdev bin]# ./elasticsearch [2019-04-26T18:19:52,697][WARN ][o.e.b.ElasticsearchUncaughtExceptionHandler] [rusdev] uncaught exception in thread [main] org.elasticsearch.bootstrap.StartupException: java.lang.RuntimeException: can not run elasticsearch as root at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:163) ~[elasticsear..
prerequisite - Java 8 이상 권장 RPM 으로 설치하기 ...더보기 1. Download (*현 시점에서는 elasticsearch version이 7.0.0입니다. 이는 추후에 변경될 수 있습니다.) $ wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-7.0.0-x86_64.rpm 직접 받아도됨 : https://www.elastic.co/kr/downloads/elasticsearch 2. 설치 $ rpm -ivh elasticsearch-oss-7.0.0-x86_64.rpm * 꼭 알아두기! Install path : /usr/share/elasticsearch config file path : ..
Elastic Search Head Plugin을 설치하기. 6.x 버전에서는 아래와 같이 plugin installer를 이용한 설치가 불가능하다. 따라서 github에서 소스를 다운로드 해야한다. $ sudo elasticsearch/bin/plugin install mobz/elasticsearch-head 1. Git로 설치하기 Git URL : https://github.com/mobz/elasticsearch-head $ git clone git://github.com/mobz/elasticsearch-head.git 2. 설치 $ cd elasticsearch-head $ npm install 참고! : tar (child): bzip2: Cannot exec: 그런 파일이나 디렉터리가 없습..
postman으로 elasticsearch post 명령어를 날리는데 자꾸 개행 문자 관련 에러가 발생하였다. { "error": { "root_cause": [ { "type": "illegal_argument_exception", "reason": "The msearch request must be terminated by a newline [\n]" } ], "type": "illegal_argument_exception", "reason": "The msearch request must be terminated by a newline [\n]" }, "status": 400 } body 부분에서 JSON(application/json) new line이 시작될때 엔터를 쳐서 개행을 만들어줘야 한다..