Elasticsearch-head在Windows 7操作系统下的安装方法
背景 – 环境、背景资料、事务发生的场所和时间等。
在尝试将ElasticSearch的插件elasticsearch-head引入时遇到了以下错误。
命令:elasticsearch-plugin.bat 安装 mobz/elastic-search-head
错误:未知插件 mobz/elasticsearch-head
途径
参考链接:https://github.com/mobz/elasticsearch-head
-
- 在命令提示符中输入 “git clone https://github.com/mobz/elasticsearch-head.git”,下载elasticsearch-head文件夹。
-
- 如果参考资料中有 “git://github.com/mobz/elasticsearch-head.git”,但出现错误的情况下,请使用上述命令。
-
- 进入elasticsearch-head文件夹,输入 “cd elasticsearch-head”。
-
- 安装,输入 “npm install”。
- 运行,输入 “npm run start”。
动了
可以在本地主机的9100端口进行确认。
批处理文件 (Pī
因为每次输入都很麻烦,所以我写了一个批处理文件。
bat:es-head.bat
cd “桌面/elasticsearch-head”
npm run start
使用git下载时遇到错误
-
- 考えられる原因:proxyを設定していない
-
- 解決方法:コマンドプロンプトから以下を設定
git config –global http.proxy http://***.***.***.***:port番号
git config –global https.proxy http://***.***.***.***:port番号