嗨,我已经在同一台服务器上安装了Elasticsearch和Kibana,我正在尝试安装Elasticsearch的X插件。我已经下载了插件zip文件,并尝试了以下命令。
./plugin install file:///root/x-pack-5.1.1.zip我得到了以下错误:
验证文件:/root/x 5.1.1.zip校验和(如果可用的话).注意:无法验证下载插件的校验和(无法找到.sha1或.md5文件来验证)错误:无法在plugin zip中找到插件描述符“plugin-criptor.properties”
发布于 2016-12-13 22:44:15
你试过用弹性搜索插件命令吗?
发布于 2018-02-09 08:13:54
我尝试了下面的步骤,对我来说,它的工作。
To add xpack extension for elasticsearch
go to /usr/share/elasticsearch/bin
bin/elasticsearch-plugin install x-pack
To add xpack extension for kibana
go to /usr/share/kibana/bin
bin/kibana-plugin install x-pack
Set the passwords for all built-in users:
go to /usr/share/elasticsearch
bin/x-pack/setup-passwords interactive
Here it will ask passwords for installed services
Open the kibana.yml file and change the following:
elasticsearch.username: "ur-username"
elasticsearch.password: "ur-password"
Restart elasticsearch, logstash and kibanahttps://stackoverflow.com/questions/41053379
复制相似问题