lucene/solr/example
Chris M. Hostetter b6480d0559 SOLR-4238: only fix one place, the other place is suppose to be broken for things to work properly
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1427258 13f79535-47bb-0310-9956-ffa450edef68
2012-12-31 23:49:57 +00:00
..
cloud-scripts LUCENE-3923: fail the build on wrong svn:eol-style 2012-08-27 14:47:19 +00:00
contexts SOLR-4223: "maxFormContentSize" in jetty.xml is not picked up by jetty 8 2012-12-24 21:08:44 +00:00
etc SOLR-4238: only fix one place, the other place is suppose to be broken for things to work properly 2012-12-31 23:49:57 +00:00
example-DIH SOLR-2045: DIH doesn't release jdbc connections for some databases 2012-11-12 17:33:00 +00:00
exampledocs SOLR-3889: improve utf-8 test script error message when curl call to Solr fails 2012-09-27 15:01:25 +00:00
multicore LUCENE-4095: remove deprecations from trunk (just the easy ones for now) 2012-05-31 02:07:11 +00:00
solr SOLR-3735: Relocate the example mime-to-extension mapping, and upgrade Velocity Engine to 1.7 2012-12-29 08:41:53 +00:00
solr-webapp removed by mistake - put it back 2012-12-06 00:24:00 +00:00
README.txt SOLR-3759: Various fixes to the example-DIH configs 2012-09-17 19:03:30 +00:00
build.xml don't fail if we cant delete: for some reason windows is hanging on to open file handles to these jars? 2012-11-10 14:08:45 +00:00
ivy.xml declare jetty.version as entity to remove the 10x duplication (asking for trouble upgrading in the future) 2012-12-10 16:12:25 +00:00

README.txt

# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements.  See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License.  You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

Solr example
------------

This directory contains an instance of the Jetty Servlet container setup to 
run Solr using an example configuration.

To run this example:

  java -jar start.jar

in this example directory, and when Solr is started connect to 

  http://localhost:8983/solr/

To add documents to the index, use the post.jar (or post.sh script) in
the example/exampledocs subdirectory (while Solr is running), for example:

     cd exampledocs
     java -jar post.jar *.xml
Or:  sh post.sh *.xml

For more information about this example please read...

 * example/solr/README.txt
   For more information about the "Solr Home" and Solr specific configuration
 * http://lucene.apache.org/solr/tutorial.html
   For a Tutorial using this example configuration
 * http://wiki.apache.org/solr/SolrResources 
   For a list of other tutorials and introductory articles.

Notes About These Examples
--------------------------

* SolrHome *

By default, start.jar starts Solr in Jetty using the default Solr Home
directory of "./solr/" (relative to the working directory of hte servlet 
container).  To run other example configurations, you can specify the 
solr.solr.home system property when starting jetty...

  java -Dsolr.solr.home=multicore -jar start.jar
  java -Dsolr.solr.home=example-DIH/solr -jar start.jar

* References to Jar Files Outside This Directory *

Various example SolrHome dirs contained in this directory may use "<lib>"
statements in the solrconfig.xml file to reference plugin jars outside of 
this directory for loading "contrib" plugins via relative paths.  

If you make a copy of this example server and wish to use the 
ExtractingRequestHandler (SolrCell), DataImportHandler (DIH), UIMA, the 
clustering component, or any other modules in "contrib", you will need to 
copy the required jars or update the paths to those jars in your 
solrconfig.xml.

* Logging *

By default, Jetty & Solr will log to the console. This can be convenient when 
first getting started, but eventually you will want to log to a file. To 
configure logging, you can just pass a system property to Jetty on startup:

  java -Djava.util.logging.config.file=etc/logging.properties -jar start.jar
 
This will use Java Util Logging to log to a file based on the config in
etc/logging.properties. Logs will be written in the logs directory. It is
also possible to setup log4j or other popular logging frameworks.