Elasticsearch是一個基於Apache Lucene(TM)的開源搜索引擎,與Solr類似,但在實時等方面性能優與Solr。這裡有一個二者的對比。
再貼一個大牛的博客:http://blog.csdn.net/laigood12345/article/category/1113868
這裡是官方文檔的中文翻譯
這裡是另一個入門指南
安裝Elasticsearch唯一的要求是Java,從官網可以下載最新版本,包括zip、tar、deb、rpm等多種版本。
# curl -L -O https://download.elastic.co/elasticsearch/***/elasticsearch-***.rpm
安裝
# rpm -ivh elasticsearch-***.rpm
安裝成功後會提示使用systemctl start elasticsearch.service
啟動服務,用systemctl status elasticsearch.service
查看服務狀態
此時,根據提示,可以使用“localhost:9200”訪問服務。
如果增加遠程訪問 (1)修改配置文件
vi /etc/elasticsearch/elasticsearch.yml
修改network.host,修改為服務器IP地址,如果需要自定義端口,可以修改http.port參數。
(2)增加端口訪問
firewall-cmd --list-all(查看規則)firewall-cmd --add-port=6379/tcp --permanentfirewall-cmd --reload
現在就可以使用地址和端口號進行遠程訪問了
http://xxxxxx/Linuxjc/1134267.html TechArticle