我们在Ubuntu 16.04上有一个带有ElasticSearch 6.4.3的3节点集群。全新安装的ES之外没有任何内容-没有索引,没有Kibana,没有Beats,没有Logstash等。
已要求我降级到6.4.2版。我在Linux方面的经验有限,但是足以运行命令行命令并理解输出。 Google已带领我一步步地实现了这一目标,但是如果有ES经验的人可能会指出一些逐步的事情,我对此的焦虑会减少很多。
我确实具有下载6.4.2的链接,但是我需要知道的一件事情是下载哪个文件:https://www.elastic.co/downloads/past-releases/elasticsearch-6-4-2
答案 0 :(得分:2)
当然,这里有逐步指南,正如我为您使用的版本一样。
SCP
将.tar
文件传输到您的ubuntu实例,我使用了我的AWS ubuntu实例。scp -i〜/您的身份文件〜/ Desktop / elasticsearch-6.4.2.tar.gz ubuntu @ aws-ec2-instance-ip:/ home / ubuntu
tar -xvf elasticsearch-6.4.2.tar.gz
命令解压缩文件。cd elasticsearch-6.4.2/config/
之类的配置文件夹,并在elasticsearch.config
中设置适当的值。./elastic
命令启动elasticsearch。更新:-基于与OP的聊天,添加了官方ES链接 https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html和https://www.elastic.co/guide/en/elasticsearch/reference/current/install-elasticsearch.html以获取详细说明。