-
Notifications
You must be signed in to change notification settings - Fork 2
Using Solr Server
Mike Panciera edited this page Sep 4, 2015
·
5 revisions
You may wish to use a Solr Server as opposed to running Seqr as a stand-alone application.
##Install
Installation is done using the makefile located in seqr/testdata
cd testdata
make
will install Solr and start the server. To install the server without starting it:
make install
To stop a server started from make:
make stop
To start it again
make start
You should see a message like:
solr-4.10.4/bin/solr -s ./solr -m 3G -p 8983
Waiting to see Solr listening on port 8983 [/]
Started Solr server on port 8983 (pid=19495). Happy searching!
Your server will also be accessible via browser at http://localhost:8983/solr/
##Usage
To make use of a Solr server, simply pass its url as the -d
parameter when running Seqr
(note that the prepending http:// is required):
java -jar seqr.jar search test.fasta -d http://localhost:8983/solr/
##FAQ
It's not working
Please note that version 4.10.4 of solr server is currently the only supported version. ##Advantages Coming Soon