Re: Cant stop/start server

2017-07-17 Thread Susheel Kumar
Exactly. Both are different and for the purpose if you see the content. The later refers the prev one. On Mon, Jul 17, 2017 at 9:15 AM, Iridian Group wrote: > So I installed SOLR on another server using just the service install > script and am experiencing the same

Re: Cant stop/start server

2017-07-17 Thread Iridian Group
So I installed SOLR on another server using just the service install script and am experiencing the same issue when starting/stopping the service using /opt/solr/bin/solr stop -all however when using /etc/init.d/solr start /etc/init.d/solr stop the server starts/stops gracefully without issue.

Re: Cant stop/start server

2017-07-14 Thread Erick Erickson
Hmm, looks like the pid file is located in different spots (depending) and the -p option apparently looks in the same place but the -all doesn't. Haven't tracked down why If I start by bin/solr start -s example/techproducts/configs the pid file goes in bin/solr It also goes there if I cd into

Re: Cant stop/start server

2017-07-14 Thread Iridian Group
REL 7.3 Apache 2.4.6 Sry, not versed enough in CLI to get your ‘find’ to work. Dropped me into a prompt of some type. Got this however. find / -name "solr-*.pid" /var/solr/solr-8983.pid Join us on facebook or twitter

Re: Cant stop/start server

2017-07-14 Thread Erick Erickson
Shouldn't be a setup or configuration issue, it should "just happen". But if this has been up and running for a long time perhaps someone "cleaned it up". Hmmm, now that I think about it the pid file must have been there if "-p " worked so I'm stumped too. What op system? The relevant part of the

Re: Cant stop/start server

2017-07-14 Thread Iridian Group
Typical story, I wasn’t the admin who set it up but I’m pretty sure is was vanilla. Thanks Keith Savoie Vice President of Technology IRiDiAN GROUP Helping organizations brand & market themselves through web, print, & social media.

Re: Cant stop/start server

2017-07-14 Thread Erick Erickson
bq: wonder why -all didn’t pick it up? Good question, I use this _all_ the time. (little joke there). The -all flag looks for various .pid files, you'll see things like: solr-8983.pid that contain the process id to kill associated with that port. Any chance these were removed or in some

Re: Cant stop/start server

2017-07-14 Thread Iridian Group
Ahhh well then. I did try the -all flag but it returned nothing. However an explicit -p 8983 did the trick. :) … wonder why -all didn’t pick it up? Thanks! Keith Savoie Vice President of Technology IRiDiAN GROUP Helping organizations

Re: Cant stop/start server

2017-07-14 Thread Atita Arora
Did you mention the port with -p Like Bin/solr stop -p 8983 Please check On Jul 14, 2017 10:35 PM, "Iridian Group" wrote: > I know I am missing something very simple here but I cant stop/start my > Solr instance with > /opt/solr/bin/solr stop > > I get “No Solr nodes

Re: Cant stop/start server

2017-07-14 Thread Erick Erickson
What is the exact command you use? Because the command is "stop -all" or "stop -p "? On Fri, Jul 14, 2017 at 10:05 AM, Iridian Group wrote: > I know I am missing something very simple here but I cant stop/start my Solr > instance with > /opt/solr/bin/solr stop > > I

Cant stop/start server

2017-07-14 Thread Iridian Group
I know I am missing something very simple here but I cant stop/start my Solr instance with /opt/solr/bin/solr stop I get “No Solr nodes found to stop”, however the server is running. I can access the server via the default port and my app is able to use its services without issue. Thanks