1. Cerebro 설치
https://github.com/lmenezes/cerebro/releases
1.2 다운로드
$wget https://github.com/lmenezes/cerebro/releases/download/v0.9.4/cerebro-0.9.4.tgz
1.3 압축 해제
$tar -xzf cerebro-0.9.4.tgz
1.4 jdk 설치
jdk가 없으면 실행 되지 않으니 다운해서 설치(하기 링크 참조)
2021.07.13 - [programmer/Tool] - java 이전 버전 설치 방법 및 버전 바꾸는 법(jdk 1.8.0_161)
2. 설정
압축 푼 폴더로 가서 conf/application.yml 수정
# A list of known hosts
hosts = [
{
host = "http://ES IP 주소:9200"
name = "my-index-cluster"
# headers-whitelist = [ "x-proxy-user", "x-proxy-roles", "X-Forwarded-For" ]
}
]
기본 포트는 9000이라고 적혀 있음.
3. 실행
run.sh 스크립트를 만들어서 실행 하였음
#!/bin/bash
nohup ./bin/cerebro > /home/ubuntu/utils/cerebro-0.9.4/setup.log 2>&1 &
반응형