On 11/13/23 14:23, Vince McMahon wrote:
...
How to correctly start the solr on my win10?
Well... if you're running `C:\solr-8.11.2\bin\solr.cmd start -p 8993`,
then you won't see Solr on http://localhost:8933/ because it's the wrong
port number. ;)
That said, we run it as a service w/ NSSM, that for some reason seems to
work better when started from the shell, so
startsolr.bat:
bin\solr.cmd start -f \
-s e:\solr\solr-8.11.2\server\solr \
-p 8983 -Denable.runtime.lib=true
(solr is in e:\solr\solr-8.11.2 as is the bat file). The bat file is the
NSSM (regular 2.24, not the beta build) service.
You may want to check the local firewall, too, and make sure port 8993
is open: winderz is supposed to ask, but sometimes it "forgets".
Dima