我已经使用已安装的elasticsearch的elasticsearch.yml配置了我的application-prod.yml。 当我们运行 mvn -Pprod (在prod配置文件中运行jhipster应用程序)时,应用程序正在运行而没有错误。但我不知道弹性搜索索引在哪里创建。 当我在浏览器localhost:1000 / _cat / indices?v中搜索时,它没有显示任何内容,因为没有索引存在。但是当我在实体中创建一行时,它就会被创建,并且在搜索相同的索引后会显示结果。在我的节点中它不存在。
我想知道prod配置文件中是如何创建和存储弹性系数索引的。 这是我在application-prod.yml for elasticsearch中所做的更改。
文件:应用prod.yml
data:
elasticsearch:
cluster-name:my-application
cluster-nodes:localhost:1000
文件:elasticsearch.yml
cluster.name: my-application
node.name: mynode
path.data: W:\Apurva\ElasticSearch\elasticsearch-5.1.2\data
path.logs: W:\Apurva\ElasticSearch\elasticsearch-5.1.2\logs
http.port: 1000