반응형
Elasticsearch / kibana homebrew를 사용해서 설치하기 (맥북)
elasticsearch 설치 전, JDK 설치 / java_home 환경변수 설정이 필요하다.
1. JDK 설치
https://blckchainetc.tistory.com/376
2. JAVA_HOME 환경변수 설정
https://blckchainetc.tistory.com/377
3. 만약 homebrew 설치가 안되어 있다면 homebrew 먼저 설치
cd /usr/local/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
잘 설치되었는지 확인
brew help
elasticsearch on mac 설치
brew tap elastic/tap
brew install elastic/tap/elasticsearch-full
elasticsearch 실행
// background 실행
brew services start elastic/tap/elasticsearch-full
// 그냥 실행
elasticsearch
크롬 url - http://localhost:9200 들어가보면 아래와 같은 결과가 나오면 elasticsearch 시작 성공
kibana on mac 설치
설치하기
brew install elastic/tap/kibana-full
실행시키기
// background 실행
brew services start elastic/tap/kibana-full
// 그냥 실행
kibana
브라우저 주소 - http://localhost:5601 에 들어가면 Kibana 페이지가 나온다.
preference : https://logz.io/blog/brew-install-elasticsearch-mac/
반응형
'Elasticsearch' 카테고리의 다른 글
[Elasticsearch] 연습 (0) | 2022.04.15 |
---|---|
[Elasticsearch + Node.js] index 생성 삭제 조회 bulk CRUD with TypeScript (0) | 2022.04.14 |
[Elasticsearch] node.js로 bulk 입력/업데이트/삭제 Bulk helpers - index, insert, update, delete (0) | 2022.04.14 |
[Elasticsearch + Node.js] with Typescript 연결하기 (0) | 2022.04.13 |
[elastic search] REST API 실습 (GET, POST, PUT, DELETE, UPDATE) (0) | 2022.04.12 |