第一次摆弄ElasticSearch。在我的VM上安装ES,通过添加
elastic_search:
install: '1'
settings:
version: '1.4.4'
java_install: true敬config.yaml。在这些指示之后,我现在想在ElasticSearch目录中执行一些操作,例如运行以下操作:
./bin/plugin -i elasticsearch/marvel/latest我的VM中的ElasticSearch目录在哪里?或者这个命令应该在我的本地机器上运行(在哪里)?
发布于 2015-03-11 20:04:37
PuPHPet使用弹性/木偶-弹性搜索模块。
通过查看这些代码,我认为其中一个目录是您想要的:
https://github.com/elastic/puppet-elasticsearch/blob/master/manifests/params.pp#L98
您的主机上没有安装弹性搜索。它只存在于您创建的VM中。不过,您可以从外部访问它,就像访问任何其他服务一样,但是实际上,通过shell运行任何代码都需要您在VM中。
https://stackoverflow.com/questions/28995621
复制相似问题