elasticsearch 단기 설정 구덩이 채우기

2918 단어 백엔드

기사 목록

  • 1 the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured

  • 1 the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured


    해결 방법:elasticsearch의 프로필을 엽니다.elasticsearch.yml
    
    cluster.name: "docker-cluster"
    network.host: 0.0.0.0
    
    # custom config
    node.name: "node-1"
    discovery.seed_hosts: ["127.0.0.1", "[::1]"]
    cluster.initial_master_nodes: ["node-1"]
    # false
    http.cors.enabled: true
    # ( ) 
    http.cors.allow-origin: /.*/ 
    
    

    여기서 중점은 다음과 같은 몇 가지 설정이다. [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes]

    좋은 웹페이지 즐겨찾기