기본 콘텐츠로 건너뛰기

Elastic 설치 및 사용기 with CentOS7

Elastic 설치 및 사용기 with CentOS7



Elasticsearch 의 설치는 간단하다.
Elastic 공식 홈페이지의 설치 설명이 있으므로 참고하도록 하자.


# yum update
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.2.0-x86_64.rpm
# sudo rpm --install elasticsearch-7.2.0-x86_64.rpm
# service elasticsearch status
# service elasticsearch start


위의 과정이 끝났다면 설치는 완료된것이다.

설치가 완료되면 localhost:9200 으로 접근이 되지만 타 서버에서 접근하여 사용하기 위해서는 설정이 필요하다.

Elasticsearch에는 세 가지 구성 파일이 있다.
  • elasticsearch.yml : Elasticsearch 구성을위한
  • jvm.options : Elasticsearch JVM 설정 구성
  • log4j2.properties : Elasticsearch 로깅 구성

중요하게 봐야 할 설정파일은 elasticsearch.yml 으로 서버 PORT 구성, Bind 할 IP, 클러스터 구성시 클러스터 노드 설정 등의 환경설정을 할수 있다.

Single-node 로 Elasticsearch 구동시 elasticsearch.yml 에 Config 추가해주어야 한다.
---------------------------------------------
network.host: { 서버 IP }
discovery.type: single-node
---------------------------------------------

해당 작업 후 웹페이지에서 {서버IP}:9200 에 접속하게 되면 아래의 이미지처럼 접속이 되는걸 확인 할 수 있다.


댓글

이 블로그의 인기 게시물

블록체인 거래소 모니터링시스템 구축이야기(2/?) - 서버 아키텍처

  코인 거래소 모니터링시스템 구축이야기(2/?) 코인 거래소 모니터링 시스템 구축 (가칭 : 김프멈춰) 서버 구성 사용자가 확인할 서비스 페이지, 데이터 저장소에 대한 서버는 NAS 서버로 운영 일일 Data 크롤링 서버는 Cloud 서버 이용하여 운영 - 서비스페이지 및 데이터 저장소 (Nas 서버) : Docker container ubuntu 20.04 - 일일 크롤링 서버 (Cloud at Cost Cloud 서버) : CentOS 7 서버 아키텍처 서버 아키텍처 레퍼런스 빗썸 : https://apidocs.bithumb.com/ 업비트 : https://docs.upbit.com/ 홍콩 Bitfinex : https://docs.bitfinex.com/docs 몽고 DB 설치 : https://coterie.tistory.com/20 1. 개요 :  https://limdh3325.blogspot.com/2021/04/1.html 2. 서버 아키텍처 :  https://limdh3325.blogspot.com/2021/04/2.html 3. MongoDB 설치 :  https://limdh3325.blogspot.com/2021/04/3.html 4. 데이터 모델링 :  https://limdh3325.blogspot.com/2021/05/4.html 5. MongoDB 저장 :  https://limdh3325.blogspot.com/2021/06/5.html