Setting up Solr May 8 2012
Few of my Ruby friends have a hard time setting up Solr for their Prod / EC2 servers. Solr is a Java web application and also come with a Jetty distribution so that you can just do -
java -jar SOLR_DOWNLOAD/example/start.jar
This however is not recommended for production as this is just running Solr on the bundled Jetty and Solr Admin is unsecured.
To setup a clean and secure Solr instance, I usually do the following -
- Copy the $SOLR_DOWNLOAD/example/solr directory somewhere else. For example $HOME/config/solr. This is now your solr config directory.