elasticsearch 단일 컴퓨터 그룹 설정

2259 단어 elasticsearch
자세히 보기
1. 먼저 자신의 기계에 jdk 버전을 설정하는 것을 확인: 1.7 이상
2. elasticsearch 다운로드
첨부 파일 참조: version: 5.5.0
    wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.5.0.zip
3. 이 zip 가방 압축 해제: unzip elasticsearch-5-5.0.zip
4. 압축을 풀린 파일을 세 부 복사합니다. 이름 규칙은:node-1,node-2,node-3
5. node-1 디렉터리에 들어간 config 파일: 다음과 같은 설정을 수정합니다
   

     cluster.name: my-application
     node.name: node-1
     node.master: true
     node.attr.rack: r1

     path.data: /path/to/data
     path.logs: /path/to/logs
     
     network.host: 127.0.0.1
     transport.tcp.port: 9300
     discovery.zen.minimum_master_nodes: 1
     http.cors.enabled: true
     http.cors.allow-origin: "*"
    

    node-2
   

     cluster.name: my-application
     node.name: node-2
     node.master: false
     node.attr.rack: r1

     path.data: /path/to/data
     path.logs: /path/to/logs
     
     network.host: 127.0.0.1
     transport.tcp.port: 9301
     discovery.zen.minimum_master_nodes: 1
     discovery.zen.ping.unicast.hosts: ["127.0.0.1:9300"]
     http.cors.enabled: true
     http.cors.allow-origin: "*"
    

  
    node-3
   

     cluster.name: my-application
     node.name: node-3
     node.master: false
     node.attr.rack: r1

     path.data: /path/to/data
     path.logs: /path/to/logs
     
     network.host: 127.0.0.1
     transport.tcp.port: 9302
     discovery.zen.minimum_master_nodes: 1
     discovery.zen.ping.unicast.hosts: ["127.0.0.1:9300"]
     http.cors.enabled: true
     http.cors.allow-origin: "*"
    

6. elasticsearch-head 다운로드
     git clone git://github.com/mobz/elasticsearch-head.git
     cd elasticsearch-head
     npm install
 
     npm run start
액세스:http://localhost:9100
7. 세 개의 elasticsearch 인스턴스를 시작합니다.
     ./bin/elasticsearch
8, 새로 고침http://localhost:9100구성 완료

좋은 웹페이지 즐겨찾기