본문 바로가기

Elasticsearch

[elasticsearch, kibana] homebrew로 설치하기 on mac 맥북

반응형

Elasticsearch / kibana homebrew를 사용해서 설치하기 (맥북) 

 

 

elasticsearch 설치 전, JDK 설치 / java_home 환경변수 설정이 필요하다.

 

1. JDK 설치 

https://blckchainetc.tistory.com/376

 

JAVA JDK mac m1에 설치하기

JDK를 mac m1에 설치하는 방법 (homebrew 이용) 1. homebrew가 없다면 먼저 설치하기 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 2. openJdk 설치하기 br..

blckchainetc.tistory.com

 

2. JAVA_HOME 환경변수 설정

https://blckchainetc.tistory.com/377

 

JAVA_HOME 환경변수 설정 on 맥북 Mac Os X

JDK 설치 후 JAVA HOME 환경변수 설정 방법 1. 내가 쓰고 있는 shell이 무엇인지 알기 ( bash / zsh ) echo $SHELL 2. JAVA_HOME 변수에 값 넣어 해당 파일로 넣기 bash 의 경우 echo export "JAVA_HOME=\$(/usr/l..

blckchainetc.tistory.com

 

 

 

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/

 

반응형