info
-
http://lucene.apache.org/solr/
-
solr is highly reliable
-
scalable and fault tolerant
-
providing distributed indexing
-
replication and load-balanced querying
-
automated failover and recovery
-
centralized configuration and more
-
install
-
manual
-
unzip and run
$ tar zxf solr-5.2.0.tgz
-
then run
-
use homebrew
$ brew install solr ==> Downloading https://www.apache.org/dyn/closer.cgi?path=lucene/solr/5.1.0/solr-5.1.0.tgz ==> Best Mirror http://apache.fayea.com/lucene/solr/5.1.0/solr-5.1.0.tgz ######################################################################## 100.0% ==> Caveats To have launchd start solr at login: ln -sfv /usr/local/opt/solr/*.plist ~/Library/LaunchAgents Then to load solr now: launchctl load ~/Library/LaunchAgents/homebrew.mxcl.solr.plist Or, if you don't want/need launchctl, you can just run: solr start ==> Summary 🍺 /usr/local/Cellar/solr/5.1.0: 4647 files, 199M, built in 18.4 minutes
-
$ pico solr_install.sh # install solr brew install solr # create base solr index directory mkdir -p /data/solr # make sure write to solr logs sudo chown -R `whoami` /usr/local/Cellar/solr/ # running solr /full/path/to/multicore
running solr
-
command options and admin console
-
start the server
# linux or unix $ solr start Waiting to see Solr listening on port 8983 [-] Started Solr server on port 8983 (pid=22992). Happy searching! $ solr start Solr home directory /usr/local/solr/libexec must contain a solr.xml file! $ pwd /usr/local/solr/server/solr $ ls README.txt configsets demo solr.xml zoo.cfg $ cp solr.xml ../../libexec/ $ solr start Waiting to see Solr listening on port 8983 [-] Started Solr server on port 8983 (pid=24935). Happy searching! # windows > solr.cmd start # start solr in the foreground $ solr start -f # on windows > solr.cmd start -f
-
script options
$ solr -help $ solr start -help
-
check if solr is running
$ solr status Found 1 Solr nodes: Solr process 22992 running on port 8983 { "solr_home":"/usr/local/Cellar/solr/5.1.0/server/solr/", "version":"5.1.0 1672403 - timpotter - 2015-04-09 10:37:54", "startTime":"2015-06-09T09:03:46.389Z", "uptime":"0 days, 0 hours, 7 minutes, 23 seconds", "memory":"21.6 MB (%4.4) of 491 MB"}
-
stop the server
# in the foreground # use `ctrl+c` to stop # running in the background # specify the port solr is listening on $ solr stop -p 8983 $ solr stop Sending stop command to Solr running on port 8983 ... waiting 5 seconds to allow Jetty process 22992 to stop gracefully. # stop all running solr instances $ solr stop -all
-
start solr with a example configuration
# solr provides a number of examples # launch the example using -e flag $ solr -e techproducts # available examples # techproducts/dih/schemaless/cloud
-
web browser admin console
http://localhost:8983/solr/
-
-
create a core
# if not start with an example configuration # need to create a core # in order to be able to index and search $ solr create -c demo Failed to determine the port of a local Solr instance, cannot create demo! $ solr create -c demo Setup new core instance directory: /usr/local/Cellar/solr/5.1.0/server/solr/demo Creating new core 'demo' using command: http://localhost:8983/solr/admin/cores?action=CREATE&name=demo&instanceDir=demo { "responseHeader":{ "status":0, "QTime":857}, "core":"demo"} $ solr create -help
-
add documents
-
use
post
script$ libexec/bin/post -c demo example/exampledocs/*.xml /Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin/java -classpath /usr/local/solr/libexec/dist/solr-core-5.1.0.jar -Dauto=yes -Dc=demo -Ddata=files org.apache.solr.util.SimplePostTool example/exampledocs/gb18030-example.xml example/exampledocs/hd.xml example/exampledocs/ipod_other.xml example/exampledocs/ipod_video.xml example/exampledocs/manufacturers.xml example/exampledocs/mem.xml example/exampledocs/money.xml example/exampledocs/monitor.xml example/exampledocs/monitor2.xml example/exampledocs/mp500.xml example/exampledocs/sd500.xml example/exampledocs/solr.xml example/exampledocs/utf8-example.xml example/exampledocs/vidcard.xml SimplePostTool version 5.0.0 Posting files to [base] url http://localhost:8983/solr/demo/update... Entering auto mode. File endings considered are xml,json,csv,pdf,doc,docx,ppt,pptx,xls,xlsx,odt,odp,ods,ott,otp,ots,rtf,htm,html,txt,log POSTing file gb18030-example.xml (application/xml) to [base] POSTing file hd.xml (application/xml) to [base] POSTing file ipod_other.xml (application/xml) to [base] POSTing file ipod_video.xml (application/xml) to [base] POSTing file manufacturers.xml (application/xml) to [base] POSTing file mem.xml (application/xml) to [base] POSTing file money.xml (application/xml) to [base] POSTing file monitor.xml (application/xml) to [base] POSTing file monitor2.xml (application/xml) to [base] POSTing file mp500.xml (application/xml) to [base] POSTing file sd500.xml (application/xml) to [base] POSTing file solr.xml (application/xml) to [base] POSTing file utf8-example.xml (application/xml) to [base] POSTing file vidcard.xml (application/xml) to [base] 14 files indexed. COMMITting Solr index changes to http://localhost:8983/solr/demo/update... Time spent: 0:00:00.384
-