Re: Administrative questions

2008-08-18 Thread Otis Gospodnetic
man <[EMAIL PROTECTED]> > To: solr-user@lucene.apache.org > Sent: Friday, August 15, 2008 4:47:27 PM > Subject: Re: Administrative questions > > Jason Rennie wrote: > > On Wed, Aug 13, 2008 at 1:52 PM, Jon Drukman wrote: > > > >> Duh. I should have thought o

Re: Administrative questions

2008-08-15 Thread Jon Drukman
Jason Rennie wrote: On Wed, Aug 13, 2008 at 1:52 PM, Jon Drukman <[EMAIL PROTECTED]> wrote: Duh. I should have thought of that. I'm a big fan of djbdns so I'm quite familiar with daemontools. Thanks! :) My pleasure. Was nice to hear recently that DJB is moving toward more flexible licen

Re: Administrative questions

2008-08-15 Thread Otis Gospodnetic
sday, August 13, 2008 8:12:33 PM > Subject: Re: Administrative questions > > On Tue, Aug 12, 2008 at 05:49:32PM -0700, Jon Drukman wrote: > > 1. How do people deal with having solr start when system reboots, manage > > the log output, etc. Right now I run it manually under

Re: Administrative questions

2008-08-14 Thread Jason Rennie
On Wed, Aug 13, 2008 at 1:52 PM, Jon Drukman <[EMAIL PROTECTED]> wrote: > Duh. I should have thought of that. I'm a big fan of djbdns so I'm quite > familiar with daemontools. > > Thanks! > :) My pleasure. Was nice to hear recently that DJB is moving toward more flexible licensing terms. For

Re: Administrative questions

2008-08-13 Thread vikalp sahni
We host solr on TOMCAT. To tackle reboot. We start solr by starting Tomcat in init and using a small script (called by the tomcat rc.d script) kept at the "../SOLRHOME" which does the CHDIR and starts catalina. This works perfectly for multiple indexes hosting too. //Vikalp On Wed, Aug 13, 2008

Re: Administrative questions

2008-08-13 Thread Jeremy Hinegardner
On Tue, Aug 12, 2008 at 05:49:32PM -0700, Jon Drukman wrote: > 1. How do people deal with having solr start when system reboots, manage > the log output, etc. Right now I run it manually under a unix 'screen' > command with a wrapper script that takes care of restarts when it crashes. > That m

RE: Administrative questions

2008-08-13 Thread Lance Norskog
I wrote shell tasks that start, stop, and heartbeat the server and run them from cron (unix). Heartbeat means: 1) is the tomcat even running, 2) does tomcat return the Solr admin page, 3) does Solr return a search. For an indexer, 4) does solr return from a commit. Stopping the server via the tomca

Re: Administrative questions

2008-08-13 Thread Jon Drukman
Jason Rennie wrote: On Tue, Aug 12, 2008 at 8:49 PM, Jon Drukman <[EMAIL PROTECTED]> wrote: 1. How do people deal with having solr start when system reboots, manage the log output, etc. Right now I run it manually under a unix 'screen' command with a wrapper script that takes care of restarts

Re: Administrative questions

2008-08-13 Thread Jason Rennie
On Tue, Aug 12, 2008 at 8:49 PM, Jon Drukman <[EMAIL PROTECTED]> wrote: > 1. How do people deal with having solr start when system reboots, manage > the log output, etc. Right now I run it manually under a unix 'screen' > command with a wrapper script that takes care of restarts when it crashes.