Multicore solr on Ubuntu 10.04 working for anyone?
Posted
by coleifer
on Stack Overflow
See other posts from Stack Overflow
or by coleifer
Published on 2010-05-14T20:56:17Z
Indexed on
2010/05/14
22:34 UTC
Read the original article
Hit count: 402
solr
|ubuntu-10.04
Following instructions from the two sites below, I've installed tomcat6 and solr 1.4
http://gist.github.com/204638 https://wiki.fourkitchens.com/display/TECH/Solr+1.4+on+Ubuntu+9.10+and+CentOS+5
I have successfully got it up and running on a server running 9.04 with multicore support, but on the 10.04 I can't seem to get it to work.
I am able to reach localhost:xxxx/solr/ on the 10.04 box and see a single link to the Solr Admin, but following the link takes me to a 404 page with the following output:
/solr/admin/ HTTP Status 404 - missing core name in path The requested resource (missing core name in path) is not available
I am also unable to access /solr/site1/ as I would except - it similarly returns a 404
<!-- from /var/solr/solr.xml, site dirs exist -->
<cores adminPath="/admin/cores">
<core name="site1" instanceDir="site1" />
<core name="site2" instanceDir="site2" />
</cores>
<!-- from /etc/tomcat6/Catalina/localhost/solr.xml -->
<Context docBase="/var/solr/solr.war" debug="0" privileged="true" allowLinking="true" crossContext="true">
<Environment name="solr/home" type="java.lang.String" value="/var/solr" override="true" />
</Context>
© Stack Overflow or respective owner