| 1 | = Solr 安裝與使用 = |
| 2 | == 環境需求 == |
| 3 | * JAVA |
| 4 | * Command line |
| 5 | == Steps == |
| 6 | 1. 下載 [http://wiki.apache.org/solr/NightlyBuilds Nightbuilds] 或 Stable版(此篇以[http://www.apache.org/dyn/closer.cgi/lucene/solr/3.6.1 stable3.6.1]為例),並解壓縮。 |
| 7 | |
| 8 | {{{ |
| 9 | $ cd ~ |
| 10 | $ wget http://ftp.mirror.tw/pub/apache/lucene/solr/3.6.1/apache-solr-3.6.1.tgz |
| 11 | $ tar zxvf apache-solr-3.6.1.tgz |
| 12 | $ cd ${Solr_HOME} //cd 到solr目錄下 |
| 13 | }}} |
| 14 | |
| 15 | 2. 執行example |
| 16 | {{{ |
| 17 | $ cd ${Solr_HOME}/example |
| 18 | $ java -jar start.jar |
| 19 | }}} |
| 20 | |
| 21 | 存取對應網址: |
| 22 | |
| 23 | * Solr 首頁:http://localhost:8983/solr/ |
| 24 | |
| 25 | * Admin:http://localhost:8983/solr/admin/ |
| 26 | |
| 27 | * 搜尋頁面:http://localhost:8983/solr/browse |
| 28 | |
| 29 | 3. 匯入索引至solr(以exampledocs下的xml為例) |
| 30 | {{{ |
| 31 | $ cd {$Solr_HOME}/example/exampledocs |
| 32 | $ java -jar post.jar *.xml |
| 33 | }}} |
| 34 | |
| 35 | 這個步驟完成後,存取[http://localhost:8983/solr/browse],即可得到一個簡單的搜尋頁面。 |
| 36 | |
| 37 | |
| 38 | |
| 39 | |