Windows 10 安裝ElasticSearch(2)- MSI安裝ElasticSearch和安裝Kibana

翻閱上篇文章:Windows 10 安裝 ElasticSearch
上次寫的是下載Zip包安裝的,在下載頁面 發現有 MSI (BETA) 的下載可選項。瞭解以後發現MSI安裝也值得嘗試。html

MSI安裝ElasticSearch

參考文章:Install Elasticsearch with Windows MSI Installer
與zip包安裝相比,MSI安裝能夠將ElasticSearch做爲Windows 服務安裝,這樣能夠方便設置開機自啓動,就不用看到有一個cmd命令行在任務欄,ElasticSearch服務在後臺運行。
固然,使用MSI安裝的最大便利是,有GUI引導方便安裝。
安裝完成以後,手動啓動ElasticSearch服務,若是按照默認配置安裝,驗證是否安裝成功的地址仍然是http://127.0.0.1:9200/json

命令行安裝ElasticSearch

官方文檔介紹了除GUI安裝的方式,使用命令行安裝ElasticSearch。windows

msiexec.exe / i elasticsearch-6.6.1.msi / qn

更多瞭解如何使用msiexec,出了能夠使用msiexec.exe / help 查看,也能夠查閱微軟官方技術文檔:https://docs.microsoft.com/zh-cn/windows/desktop/Msi/command-line-optionsbash

卸載ElasticSearch

不能使用MSI進行卸載,卸載的話,只能經過 「添加/刪除程序」 進行卸載。app

安裝Kibana

參考:https://www.elastic.co/guide/cn/kibana/current/windows.html
下載: https://www.elastic.co/downloads/kibanacurl

加載示例數據

參考 :https://www.elastic.co/guide/cn/kibana/current/tutorial-load-dataset.htmlelasticsearch

下載示例數據以後,有兩個地方須要多說兩句。
提醒1:ide

使用如下命令在終端(如 bash )創建一個莎士比亞數據集的映射:ui

能夠打開kibana界面,在Dev Tools的Console下使用PUT建立索引。
或者使用Windows 10 自帶Curl命令,進行操做。
若是沒有自帶curl,能夠安裝curl,下載頁面:https://curl.haxx.se/download.html
curl的使用請自行搜索。url

提醒2:官方文檔中給出的命令須要作個修正

curl -H 'Content-Type: application/x-ndjson' -XPOST 'localhost:9200/bank/account/_bulk?pretty' --data-binary @accounts.json

例如上述語句是沒法在cmd下執行成功,須要修正,即修改單引號爲雙引號

curl -H "Content-Type: application/x-ndjson" -XPOST "localhost:9200/bank/account/_bulk?pretty" --data-binary @accounts.json
相關文章
相關標籤/搜索