I had a two bat files start.bat and stop.bat for starting and stopping SOLR server manually, Is it possible for me to create a windows serive which will call start.bat on starting the service and also call stop.bat on stopping the sERVICE
|
Consider Solr Multicore feature with Tomcat. Each core is like a fully fledged installation, "separate configurations and indexes, with their own config and schema for very different applications, but still have the convenience of unified administration" http://wiki.apache.org/solr/CoreAdmin Even if you dont use multiple indexes, it's much more elegant to set up. Solr is available on startup if Tomcat is set that way. I assume you are using Solr 1.4. You need to do these steps: Set up a solr root directoryOverview
The core parameter specifies a new core. The attributes specify that for serving http//localhost:8080/mysearchapp/myindex, the index directory is myindexdir, which brings us to the next step. Create the actual coreOverview
Set up tomcat
Now do your operations on your core like http://localhost:8080/mysearchapp/myindex/select?q=MY-QUERY |
|||
|
|
|
Solr runs on top of a Servlet container like Tomcat. So for starting Solr you have to configure Solr with your Servlet container and then start. Yes you can of course create a Windows Service. However you have not mentioned which Servlet container are you using for running Solr? If it is Apache Tomcat here you go:
|
|||
|
|