Need help troubleshooting why Solr wont start (or why solr admin page wont show)
Posted
by Camran
on Stack Overflow
See other posts from Stack Overflow
or by Camran
Published on 2010-05-29T11:50:18Z
Indexed on
2010/05/29
11:52 UTC
Read the original article
Hit count: 557
I can't get Solr working. I have Jetty, and my server OS is Ubuntu 9.10. It is a VPS server.
So, when I execute the java -jar start.jar
everything seems fine.
I even do a netstat to check if there are any listeners on the port before the start and after the start, and it seems solr is starting.
However, I cant access the admin page. I have even turned off the firewall.
Here is some info about my server:
I have changed DocumentRoot to var/www/SV/
I have Apache2, PHP5, MySql installed
I have "disabled" iptables firewall
I have removed the htaccess files (I used them to passw protect my site under develop)
I have installed JRE (NOT JDK) on my server.
I use the "example" which comes with Solr, so I use Jetty as container on my Server.
My Server has 768MB RAM
Doing a java -version command shows this:
java version "1.6.0_15"
Java(TM) SE Runtime Environment (build 1.6.0_15-b03)
Java HotSpot(TM) Client VM (build 14.1-b02, mixed mode)
And in the terminal the last lines when executing start.jar is:
May 29, 2010 1:30:03 PM org.apache.solr.core.SolrCore registerSearcher
INFO: [] Registered new searcher Searcher@1dc64a5 main
NOTE: Also before this last line, there is a line which makes me suspicious:
Started SocketConnector @ 0.0.0.0:8983 // Should this be with leading zeros?
Is there any ways you know to troubleshoot this? Memory issue maybe?
Thanks
© Stack Overflow or respective owner