Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I am not promising to get all your things, but (numbers do not match questions):</p> <p>1) Jetty is a web-server. Solr runs as a (web) application inside that web server, however:</p> <p>2) Jetty can also run an embedded webserver, which is how Solr download works. When you do java -jar start.jar that runs Jetty with everything preconfigured. In which case you do not need a standalone Jetty. I suggest start with embedded Jetty, then switch to external one. However, if only your local app talks to local Solr server, you may be able to get quite far without needing full Jetty.</p> <p>3) You don't need all the stuff you find in example directory - it has multiple confugurations and support files and is somewhat nested (which is confusing)</p> <p>4) To start you need two things: Running solr; your configuration directory</p> <p>5) The easiest way to get Solr running is to put the whole distrubution directory (I know - large) somewhere (e.g. /opt/solr). </p> <p>6) Your configuration directory is very simple. All you need is two files to start, three if you are picky about names: - (wherever, but make sure Solr can read/write there) -- solr.xml (if you are picking about collection name, otherwise you can skip it) -- collection1/ (that's default name, you can change that in solr.xml) -- collection1/conf/ (this is configuration directory, Solr will add data directory on the same level once you start right) schema.xml -- collection1/conf/shema.xml -- collection1/conf/solrconfig.xml</p> <p>7) Then, you need to be in the example directory and run java -Dsolr.solr.home= start.jar . This will get all the pieces up and running on port :8983 . Solr 4 has a pretty new admin interface, so visit it with your browser, maybe do the tutorial, etc.</p> <p>If you need help with minimal functioning schema/solrconfig files, ask separately, but you cannot just use ones from the example directory as it has all the other file references in the fieldType analysers (though you could just comment those lines out).</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload