學習筆記:從0開始學習大資料-27. solr安裝使用
Solr是一個獨立的企業級搜尋應用伺服器,它對外提供類似於Web-service的API介面。使用者可以通過http請求,向搜尋引擎伺服器提交一定格式的XML,json或rest,http get請求,生成並返回索引,有靈活的請求引數設定,以及返回資料的條件,欄位,分頁等定製。
1.下載
wget http://archive.cloudera.com/cdh5/cdh/5/solr-4.10.3-cdh5.16.0.tar.gz
2.解壓
tar -zxvf solr-4.10.3-cdh5.16.0.tar.gz
3.啟動
[[email protected] bin]# ./solr start
Waiting to see Solr listening on port 8983 [-]
Started Solr server on port 8983 (pid=7148). Happy searching!
4.web操作介面
Overview 概覽
Analysis 分析
Dataimport 從資料庫匯入資料
Documents 索引文件的編輯
Files 檢視conf配置資料夾各檔案內容
Query 查詢頁面
Replaction 主從的複製
Schema Browser 索引表結構瀏覽
參考: https://blog.csdn.net/zcl_love_wx/article/details/52092098
5.建立新的Core (我理解為新的索引庫)一個solr平臺可以有多個索引庫
cd solr-4.10.3-cdh5.16.0/example/solr
mkdir mycore
cp -rf ./collection1/conf ./mycore
mkdir ./mycore/data
6.solr使用教程
https://www.w3cschool.cn/solr_doc/solr_doc-g1az2fmd.html
重要概念圖