https://double-y.tistory.com/92
elasticsearch(엘라스틱 서치) 첫 시작 튜토리얼이자 매뉴얼
회사에서 엘라스틱 서치 관련해서 일 시작할거라고 공부하라고 하셔서 이것저것 찾아보며 엘라스틱서치 설치를 끝내고 키바나 실행까지 완료하였다!1. 엘라스틱 서치 설치(다운로드)https://www.el
double-y.tistory.com
엘라스틱 서치가 잘 다운로드 되었다면....... 키바나를 설치하러가자
1. 엘라스틱 사이트 안에 있는 키바나 파일 다운로드
https://www.elastic.co/kr/downloads/past-releases#kibana
Past Releases of Elastic Stack Software
Looking for a past release of Elasticsearch, Logstash, Kibana, es-hadoop, Shield, Marvel, or our language clients? You're in the right place....
www.elastic.co
키바나를 설치할땐 엘라스틱 서치와 버전이 동일한 것으로 설치하는게 좋다
나는 8.17.3으로 맞춰주었다
2. 파일 압축 해제
3. kibana.yml 파일 수정
# =================== System: Elasticsearch ===================
# The URLs of the Elasticsearch instances to use for all your queries.
#elasticsearch.hosts: ["http://localhost:9200"]
# If your Elasticsearch is protected with basic authentication, these settings provide
# the username and password that the Kibana server uses to perform maintenance on the Kibana
# index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
# is proxied through the Kibana server.
elasticsearch.username: "username"
elasticsearch.password: "password"
엘라스틱 서치 username과 password를 상단에 있는 주소에서 설정한 user값으로 설정한다
4. cmd 실행
5. kibana 설치되어있는 경로로 이동
cd C:\kibana-8.17.3\kibana-8.17.3\bin
6. 키바나 실행
kibana.bat
오류뜸;;
Kibana is currently running with legacy OpenSSL providers enabled! For details and instructions on how to disable see https://www.elastic.co/guide/en/kibana/8.17/production.html#openssl-legacy-provider
apm_user 권한이 없어서 오류가 떴다
상단 주소에 적힌대로 권한 설정을 하고나서 다시 배치파일을 실행시킨다
7. localhost:5601 접속
http://localhost:5601/
잘 실행되는것을 확인할수 있다
'개발 관련' 카테고리의 다른 글
이클립스 환경세팅 하면서 중요하다고 생각되는 부분들 (0) | 2025.04.02 |
---|---|
이클립스 콘솔, 서버 제대로 안켜질때 확인해봐야될것 (1) | 2025.04.01 |
elasticsearch 비밀번호 잃어버렸을때 대처법 (0) | 2025.03.18 |
elasticsearch(엘라스틱 서치) 첫 시작 튜토리얼이자 매뉴얼 (0) | 2025.03.18 |
intellij(인텔리제이) 톰캣 연동 (1) | 2024.08.18 |