Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SMILA/Documentation/HowTo/How to setup SMILA in a cluster"

(New page: === Install external SOLR server ===)
 
(Install external SOLR server)
Line 1: Line 1:
=== Install external SOLR server ===
+
=== Install external Solr server ===
 +
 
 +
==== Single-Node Server ====
 +
 
 +
* Download a Solr 3.x archive from [http://lucene.apache.org/solr/ http://lucene.apache.org/solr/]. This HowTo was tested with Solr 3.6.1
 +
* Unpack the archive to a local directory, you get a directory like <tt>/home/smila/solr/apache-solr-3.6.1</tt>.
 +
* Copy the files from <tt>SMILA/configuration/org.eclipse.smila.solr</tt> to the Solr machine (solr.properties is'nt needed), e.g. to <tt>/home/smila/solr/smila-cores</tt>
 +
* Go to <tt>/home/smila/solr/apache-solr-3.6.1/example</tt> and run:
 +
<pre>
 +
java -Dsolr.solr.home=/home/smila/solr/smila-cores -jar start.jar
 +
</pre>
 +
* Check if Solr is running at [[http://localhost:8983/solr/DefaultCore/admin/ http://localhost:8983/solr/DefaultCore/admin/]] (replace <tt>localhost</tt> with name of your Solr server, if necessary).
 +
 
 +
==== Distributed Server ====
 +
 
 +
'''TODO'''

Revision as of 04:17, 18 October 2012

Install external Solr server

Single-Node Server

  • Download a Solr 3.x archive from http://lucene.apache.org/solr/. This HowTo was tested with Solr 3.6.1
  • Unpack the archive to a local directory, you get a directory like /home/smila/solr/apache-solr-3.6.1.
  • Copy the files from SMILA/configuration/org.eclipse.smila.solr to the Solr machine (solr.properties is'nt needed), e.g. to /home/smila/solr/smila-cores
  • Go to /home/smila/solr/apache-solr-3.6.1/example and run:
java -Dsolr.solr.home=/home/smila/solr/smila-cores -jar start.jar

Distributed Server

TODO

Back to the top