Hi,
I have been using Jetty on my linux/apache webserver for about 3 weeks now. I decided that I should change to Tomcat after realizing I will be indexing a lot of URL's and Jetty is good for small production sites as noted in the Wiki. I am running into this error: org.apache.solr.common.SolrException: Schema Parsing Failed at org.apache.solr.schema.IndexSchema.readSchema(IndexSchema.java:656) at org.apache.solr.schema.IndexSchema.<init>(IndexSchema.java:95) at org.apache.solr.core.SolrCore.<init> My localhost/solr.xml : <Context docBase="/tomcat/webapps/solr.war" debug="0" privileged="true" allowLinking="true" crossContext="true"> <Environment name="solr/home" type="java.lang.String" value="/tomcat/webapps/solr/" override="true" /> </Context> My solrconfig.xml: <dataDir>${solr.data.dir:/tomcat/webapps/solr/conf}</dataDir> I can get to the 8080 Tomcat default page just fine. I've gone over the Wiki a couple of dozen times and verified that my solr.xml is configured correctly based on trial and error and reading the error logs. I just can't figure out where it is going wrong. I read there are three different ways to do this. Can someone help me out? I am using Solr 1.4.0 and Tomcat 5.5.30 Eric