Solr Tutorial
Overview This document covers the basics of running Solr using an example schema, and some sample data. Requirements To follow along with this tutorial, you will need... Java 1.5 or greater. Some places you can get it are from Oracle , Open JDK , IBM , or Running java -version at the command line should indicate a version number starting with 1.5. Gnu's GCJ is not supported and does not work with Solr. A Solr release . Getting Started Please run the browser showing this tutorial and the Solr server on the same machine so tutorial links will correctly point to your Solr server. Begin by unziping the Solr release and changing your working directory to be the " example " directory. (Note that the base directory name may vary with the version of Solr downloaded.) For example, with a shell in UNIX, Cygwin, or MacOS: user:~solr$ ls solr-nightly.zip user:~solr$ unzip -q solr-nightly.zip user:~solr$ cd solr-nightly/example/ Solr can run...