背景
ElasticSearchのプラグインであるelasticsearch-headを以下のように導入しようとしたところ、エラー発生
コマンド:elasticsearch-plugin.bat install mobz/elastic-search-head
ERROR: Unknown plugin mobz/elasticsearch-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
動いた
localhost:9100
より確認可能
バッチファイル
いちいち入力するのが面倒なのでバッチファイルを書いた
es-head.bat
cd "Desktop/elasticsearch-head"
npm run start```
## gitによるダウンロードでエラー
- 考えられる原因:proxyを設定していない
- 解決方法:コマンドプロンプトから以下を設定
- ```git config --global http.proxy http://***.***.***.***:port番号```
- ```git config --global https.proxy http://***.***.***.***:port番号```