how to move elasticsearch data from one server to another

后端 未结 12 1453
悲哀的现实
悲哀的现实 2020-12-12 12:27

How do I move Elasticsearch data from one server to another?

I have server A running Elasticsearch 1.1.1 on one local node with mul

12条回答
  •  北海茫月
    2020-12-12 13:23

    Use ElasticDump

    1) yum install epel-release

    2) yum install nodejs

    3) yum install npm

    4) npm install elasticdump

    5) cd node_modules/elasticdump/bin

    6)

    ./elasticdump \
    
      --input=http://192.168.1.1:9200/original \
    
      --output=http://192.168.1.2:9200/newCopy \
    
      --type=data
    

提交回复
热议问题