Re: Stop/Restart Solr

2013-10-23 Thread Raheel Hasan
>> Can you please share output of following command? > >> ps -ef | grep 'start.jar' > >> > >> - Jeeva > >> > >> ------ Original Message -- > >> From: Raheel Hasan [mailto:raheelhasan@gmail.com] > >> Sent: Octob

Re: Stop/Restart Solr

2013-10-23 Thread Walter Underwood
or it. > > - Jeeva > > -- Original Message -- > From: Raheel Hasan [mailto:raheelhasan@gmail.com] > Sent: October 23, 2013 3:29:47 PM GMT+05:30 > To: solr-user@lucene.apache.org > Subject: Re: Stop/Restart Solr > > > 31173 1 0 16:45 ?00:00:08 java

Re: Stop/Restart Solr

2013-10-23 Thread Furkan KAMACI
onitor it. > > - Jeeva > > -- Original Message -- > From: Raheel Hasan [mailto:raheelhasan@gmail.com] > Sent: October 23, 2013 3:29:47 PM GMT+05:30 > To: solr-user@lucene.apache.org > Subject: Re: Stop/Restart Solr > > > 31173 1 0 16:45 ?00:0

RE: Stop/Restart Solr

2013-10-23 Thread Jeevanandam M.
@lucene.apache.org Subject: Re: Stop/Restart Solr 31173 1 0 16:45 ?00:00:08 java -jar start.jar On Wed, Oct 23, 2013 at 2:53 PM, Jeevanandam M. wrote: > Can you please share output of following command? > ps -ef | grep 'start.jar' > > - Jeeva > >

Re: Stop/Restart Solr

2013-10-23 Thread Raheel Hasan
aheel Hasan [mailto:raheelhasan@gmail.com] > Sent: October 23, 2013 3:19:46 PM GMT+05:30 > To: solr-user@lucene.apache.org > Subject: Re: Stop/Restart Solr > > > Kill -9 didnt kill it... ... the process is now again listed, but with > PPID=1 which I dont want to kill as many

RE: Stop/Restart Solr

2013-10-23 Thread Jeevanandam M.
Can you please share output of following command? ps -ef | grep 'start.jar' - Jeeva -- Original Message -- From: Raheel Hasan [mailto:raheelhasan@gmail.com] Sent: October 23, 2013 3:19:46 PM GMT+05:30 To: solr-user@lucene.apache.org Subject: Re: Stop/Restart Solr

Re: Stop/Restart Solr

2013-10-23 Thread Raheel Hasan
also, is this DSTOP.PORT same as on which solr is visible on a browser (i.e. like 8983 from http://localhost:8983)? On Wed, Oct 23, 2013 at 2:49 PM, Raheel Hasan wrote: > Kill -9 didnt kill it... ... the process is now again listed, but > with PPID=1 which I dont want to kill as many proces

Re: Stop/Restart Solr

2013-10-23 Thread Raheel Hasan
Kill -9 didnt kill it... ... the process is now again listed, but with PPID=1 which I dont want to kill as many processes have this same id... On Tue, Oct 22, 2013 at 11:59 PM, Utkarsh Sengar wrote: > We use this to start/stop solr: > > Start: > java -Dsolr.clustering.enabled=true -Dsolr.so

Re: Stop/Restart Solr

2013-10-22 Thread Utkarsh Sengar
We use this to start/stop solr: Start: java -Dsolr.clustering.enabled=true -Dsolr.solr.home=multicore -Djetty.class.path=lib/ext/* -Dbootstrap_conf=true -DnumShards=3 -DSTOP.PORT=8079 -DSTOP.KEY=some_value -jar start.jar Stop: java -Dsolr.solr.home=multicore -Dbootstrap_conf=true -DnumShards=3 -

Re: Stop/Restart Solr

2013-10-22 Thread Raheel Hasan
ok fantastic... thanks a lot guyz On Tue, Oct 22, 2013 at 10:00 PM, François Schiettecatte < fschietteca...@gmail.com> wrote: > Yago has the right command to search for the process, that will get you > the process ID specifically the first number on the output line, then do > 'kill ###', if

Re: Stop/Restart Solr

2013-10-22 Thread François Schiettecatte
Yago has the right command to search for the process, that will get you the process ID specifically the first number on the output line, then do 'kill ###', if that fails 'kill -9 ###'. François On Oct 22, 2013, at 12:56 PM, Raheel Hasan wrote: > its CentOS... > > and using jetty with solr h

Re: Stop/Restart Solr

2013-10-22 Thread Yago Riveiro
If is CentOS use: ps -ef | grep java | grep 'start.jar' will give you the process ( I assumed that you only have one instance running. ) -- Yago Riveiro Sent with Sparrow (http://www.sparrowmailapp.com/?sig) On Tuesday, October 22, 2013 at 5:56 PM, Raheel Hasan wrote: > its CentOS... >

Re: Stop/Restart Solr

2013-10-22 Thread Raheel Hasan
its CentOS... and using jetty with solr here.. On Tue, Oct 22, 2013 at 9:54 PM, François Schiettecatte < fschietteca...@gmail.com> wrote: > A few more specifics about the environment would help, Windows/Linux/...? > Jetty/Tomcat/...? > > François > > On Oct 22, 2013, at 12:50 PM, Yago Riveiro

Re: Stop/Restart Solr

2013-10-22 Thread Yago Riveiro
You can do `ps -ef | grep java | grep 'start.jar'` -- Yago Riveiro Sent with Sparrow (http://www.sparrowmailapp.com/?sig) On Tuesday, October 22, 2013 at 5:52 PM, Raheel Hasan wrote: > ok. I thought there must be a way to restart solr.. > > Because, once the process is running (i.e. sta

Re: Stop/Restart Solr

2013-10-22 Thread François Schiettecatte
A few more specifics about the environment would help, Windows/Linux/...? Jetty/Tomcat/...? François On Oct 22, 2013, at 12:50 PM, Yago Riveiro wrote: > If you are asking about if solr has a way to restart himself, I think that > the answer is no. > > If you lost control of the remote machin

Re: Stop/Restart Solr

2013-10-22 Thread Raheel Hasan
ok. I thought there must be a way to restart solr.. Because, once the process is running (i.e. start.jar), I dont know where to find it. pgrep doesnt return start.jar but java as a whole. So how to know the exact process number of start.jar? Thanks.. On Tue, Oct 22, 2013 at 9:50 PM, Yago Rive

Re: Stop/Restart Solr

2013-10-22 Thread Yago Riveiro
If you are asking about if solr has a way to restart himself, I think that the answer is no. If you lost control of the remote machine someone will need to go and restart the machine ... You can try use a kvm or other remote control system -- Yago Riveiro Sent with Sparrow (http://www.sparro

Re: Stop/Restart Solr

2013-10-22 Thread François Schiettecatte
If you are on linux/unix, use the kill command. François On Oct 22, 2013, at 12:42 PM, Raheel Hasan wrote: > Hi, > > is there a way to stop/restart java? I lost control over it via SSH and > connection was closed. But the Solr (start.jar) is still running. > > thanks. > > -- > Regards, > Ra

Stop/Restart Solr

2013-10-22 Thread Raheel Hasan
Hi, is there a way to stop/restart java? I lost control over it via SSH and connection was closed. But the Solr (start.jar) is still running. thanks. -- Regards, Raheel Hasan