solr常用命令總結

2021-07-09 19:18:18 字數 1463 閱讀 4308

檢視幫助

bin/solr -help    

可以看到solr有哪些子命令,如 start, stop, restart, status, healthcheck, create, create_core, create_collection, delete, version

啟動start

bin/solr start  -help    檢視start幫助

bin/solr start        啟動單機版

bin/solr start -f           前台啟動

bin/solr start -p 8984        指定埠啟動

bin/solr start -cloud        啟動分布式版本

bin/solr start -e cloud -noprompt         -e表示要啟動乙個現有的例子,例子名稱是cloud,cloud這個例子是以solrcloud方式啟動的

bin/solr restart          重啟專案

create

如果是單機版要建立core,如果是分布式的要建立collection

bin/solr create -help     檢視create幫助

bin/solr create -c abc

abc是core或collection的名字,取決於solr是單機版還是cloud版本;重新整理

http://localhost:8983/solr ,可以看到core selector中多了乙個abc

abc目錄的位置建立在

solr.solr.home(預設是solr的

server/solr目錄

)目錄下

post提交資料生成索引

bin/post -c abc docs/

向名為abc

的core或collection提交資料,資料來源在docs/目錄中

刪除

bin/solr delete -c abc     刪除乙個core或collection

刪除索引

bin/post -c abc  -d "/home/matthewi/software/solr-5.4.1/docs/solr-morphlines-core/allclasses-noframe.html"

重新執行上面的搜尋可以看到搜尋結果的數量少了一條:

numfound列

bin/post -c abc -d "*:*"

刪除所有資料

停止solr

bin/solr stop -all

狀態

bin/solr status

常用命令總結

一,vim常用命令 set nu 顯示行號 dd 刪除當前行 yy 拷貝當前行 p 粘接內容 行號gg 定位改行到行號 g 切換到檔案尾部 gg 切換到檔案頭部 二,linux常用命令 全路徑cp a 拷貝目錄 a dpr cat n 行號 檢視檔案內容前面10行 rename 改名 rm rf 刪...

常用命令總結

1 lsof i 埠號 2 netstat tunlp grep 埠號 1.徹底置空,也就是ls檔案的大小為0,檔案裡面什麼都沒有 1 filename 2 true filename 3 cat dev null filename 4 filename 2.置空檔案,但是檔案中有空行,ls檔案的大...

mysql常用命令總結 mySql常用命令總結

總結一下自己常用的mysql資料庫的常用命令 mysql u root p 進入mysql bin目錄後執行,回車後輸入密碼連線。資料庫操作 1 create database dbname 建立資料庫,資料庫名為dbname 2 create database todo default chara...