练习:
概念证明;目前共享驱动器和用户手动搜索和通过Windows搜索的1000个文档(word和pdf)
我们的想法是通过弹性搜索来存储和检索文档(全部或部分MS word或pdf以及一些元数据,如作者,标题,创建日期等)。
到目前为止,我已经在我的机器上安装了弹性搜索和git bash,并创建了一些文档,如下面的文件
curl -XPUT 'localhost:9200/irs_grants/grant/2?pretty' -d '
{
"StudyTitle": "Identification of this and that",
"ReferenceNumber": "09/125487",
"PrincipalInvesigator": "Dr Smith",
"ResearchTheme": "Cancer",
"OrganisationType": "BRC",
"OrganisationName": "Newcastle BRC"
}'
运行一些查询...我知道如何检索部分或整个弹性搜索文档。
下一步是安装类似elasticsearch头的网站,并开始向用户展示基本弹性搜索安装的强大功能。
问题
跟随(显然我遗漏了一些东西)elasticsearch-head插件的安装说明,然后在我的浏览器上打开localhost:9200
我得到了这个:
{
"status" : 200,
"name" : "Katie Power",
"cluster_name" : "elasticsearch",
"version" : {
"number" : "1.4.2",
"build_hash" : "927caff6f05403e936c20bf4529f144f0c89fd8c",
"build_timestamp" : "2014-12-16T14:11:12Z",
"build_snapshot" : false,
"lucene_version" : "4.10.2"
},
"tagline" : "You Know, for Search"
}
你可以帮忙吗?
答案 0 :(得分:0)
使用此URL在本地计算机上进行弹性搜索 http://localhost:9200/_plugin/head
如果缺少head plugin,请通过elasticsearch bin目录
中的此命令安装它bin/plugin.bat -install mobz/elasticsearch-head