魯春利的工作筆記,好記性不如爛筆頭
創(chuàng)新互聯(lián)為客戶提供專業(yè)的網(wǎng)站建設(shè)、網(wǎng)站制作、程序、域名、空間一條龍服務(wù),提供基于WEB的系統(tǒng)開發(fā). 服務(wù)項目涵蓋了網(wǎng)頁設(shè)計、網(wǎng)站程序開發(fā)、WEB系統(tǒng)開發(fā)、微信二次開發(fā)、移動網(wǎng)站建設(shè)等網(wǎng)站方面業(yè)務(wù)。
1、查看幫助
在Admin UI的底部可以連接到相應(yīng)網(wǎng)站,查看關(guān)于Solr的幫助信息。
2、Dashboard
Admin UI的默認頁面,主要包括:
實例的信息(如solr服務(wù)啟動時間)
版本信息(solr以及l(fā)ucene的版本信息)
JVM配置參數(shù)(如
-DSTOP.KEY=solrrocks
-DSTOP.PORT=7983
-Djetty.home=/lucl/solr-5.3.0/server
-Djetty.port=8983
-Dsolr.install.dir=/lucl/solr-5.3.0
以及主機系統(tǒng)信息(如內(nèi)存、交換空間、文件描述符及JVM內(nèi)存使用情況)。
3、Logging
以Core(索引庫)為單位創(chuàng)建日志文件,另外可以設(shè)置日志級別。
說明:Solr的日志級別還是挺細的,可以對于某個類進行單獨配置。
4、Core Admin
用來管理Solr的Core(索引庫),CoreAdminHandler類封裝了其功能實現(xiàn)。
5、Java Properties
Solr運行是的配置參數(shù),可以通過-D參數(shù)名=參數(shù)值的方式覆蓋默認參數(shù)。
6、Thread Dump
The Thread Dump screen lets you inspect the currently active threads on your server.
7、Manage Core
通過Admin UI執(zhí)行Add Core時總提示錯誤:
Error CREATEing SolrCore 'my_core': Unable to create core [new_core] Caused by: Can't find resource 'solrconfig.xml' in classpath or '/lucl/solr-5.3.0/server/solr/my_core/conf'
于是通過命令腳本執(zhí)行創(chuàng)建:
[hadoop@nnode solr-5.3.0]$ bin/solr create -c test_core Setup new core instance directory: /lucl/solr-5.3.0/server/solr/test_core Creating new core 'test_core' using command: http://localhost:8983/solr/admin/cores?action=CREATE&name=test_core&instanceDir=test_core { "responseHeader":{ "status":0, "QTime":3876}, "core":"test_core"} [hadoop@nnode solr-5.3.0]$
說明:對于創(chuàng)建失敗的,可以使用bin/solr delete -c 索引庫名稱進行刪除。
查看索引庫的目錄結(jié)構(gòu)
[hadoop@nnode server]$ pwd /lucl/solr-5.3.0/server [hadoop@nnode server]$ cd solr [hadoop@nnode solr]$ ll 總用量 20 drwxr-xr-x 5 hadoop hadoop 4096 8月 12 17:16 configsets -rw-r--r-- 1 hadoop hadoop 3037 8月 12 17:16 README.txt -rw-r--r-- 1 hadoop hadoop 1887 8月 12 17:16 solr.xml drwxrwxr-x 4 hadoop hadoop 4096 1月 25 20:24 test_core -rw-r--r-- 1 hadoop hadoop 501 8月 12 17:16 zoo.cfg [hadoop@nnode solr]$ cd test_core/ [hadoop@nnode test_core]$ ll 總用量 12 drwxrwxr-x 3 hadoop hadoop 4096 1月 21 12:28 conf -rw-rw-r-- 1 hadoop hadoop 79 1月 25 20:24 core.properties drwxrwxr-x 4 hadoop hadoop 4096 1月 25 20:24 data [hadoop@nnode test_core]$ cd conf/ [hadoop@nnode conf]$ ll 總用量 148 -rw-rw-r-- 1 hadoop hadoop 3974 8月 12 17:16 currency.xml -rw-rw-r-- 1 hadoop hadoop 1348 8月 12 17:16 elevate.xml drwxrwxr-x 2 hadoop hadoop 4096 1月 21 12:28 lang -rw-rw-r-- 1 hadoop hadoop 55614 8月 12 17:16 managed-schema -rw-rw-r-- 1 hadoop hadoop 308 8月 12 17:16 params.json -rw-rw-r-- 1 hadoop hadoop 873 8月 12 17:16 protwords.txt -rw-rw-r-- 1 hadoop hadoop 61532 8月 12 17:16 solrconfig.xml -rw-rw-r-- 1 hadoop hadoop 781 8月 12 17:16 stopwords.txt -rw-rw-r-- 1 hadoop hadoop 1119 8月 12 17:16 synonyms.txt [hadoop@nnode conf]$ cd ../data/ [hadoop@nnode data]$ ll 總用量 8 drwxrwxr-x 2 hadoop hadoop 4096 1月 25 20:24 index drwxrwxr-x 2 hadoop hadoop 4096 1月 25 20:24 tlog [hadoop@nnode data]$