solr setup

2006-03-20 Thread Mike Austin
I'm trying to set solr up with CentOS 4.2, Apache 2.0.55, Tomcat 5, and Java SDK 1.5 for the first time. I copied the solr.war to the tomcat webapps folder and it created the solr folders. I then try running the app with http://localhost:8080/solr/adminand I get an error (I don't have the error me

Re: solr setup

2006-03-20 Thread Yonik Seeley
On 3/20/06, Mike Austin <[EMAIL PROTECTED]> wrote: > I'm trying to set solr up with CentOS 4.2, Apache 2.0.55, Tomcat 5, and Java > SDK 1.5 for the first time. > > I copied the solr.war to the tomcat webapps folder and it created the solr > folders. I then try running the app with > http://localhos

Re: solr setup

2006-03-20 Thread Mike Austin
Thanks Yonik, I fixed the conf issue.. now I get this. Any ideas? 2006-03-20 20:42:09 StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception java.lang.NoClassDefFoundError at org.apache.jsp.admin.index_jsp._jspService(index_jsp.java:67) at org.apache.jasper.r

Re: solr setup

2006-03-20 Thread Yonik Seeley
I'm not sure what to make of that error... I don't see what class is trying to be found that results in the "NoClassDefFoundError". I've personally only tried Solr with Tomcat 5.5, Resin 3, and Jetty 6. Perhaps you could try upgrading to Tomcat 5.5? -Yonik On 3/20/06, Mike Austin <[EMAIL PROTECT

Re: solr setup

2006-03-20 Thread Mike Austin
Actually.. it looks like it is still not finding solrconfig.xml because after I restart tomcat I get the config file error. Where should this go again? I know you said ./solrconf, but relative to what? Also, I still don't know if I deployed the site correctly..the only thing I did was copy the

Re: solr setup

2006-03-20 Thread Yonik Seeley
On 3/20/06, Mike Austin <[EMAIL PROTECTED]> wrote: > Actually.. it looks like it is still not finding solrconfig.xml because after > I restart tomcat I get the config file error. Where should this go again? I > know you said ./solrconf, but relative to what? Solr looks in ./solrconf, relative to

Re: solr setup

2006-03-20 Thread Mike Austin
ok.. here is the error: 2006-03-20 22:37:03 StandardContext[/solr]StandardWrapper.Throwable java.lang.ExceptionInInitializerError at org.apache.solr.update.SolrIndexConfig.(Unknown Source) at org.apache.solr.core.SolrCore.(Unknown Source) at org.apache.solr.servlet.SolrServl

Re: solr setup

2006-03-20 Thread Yonik Seeley
> Caused by: java.lang.RuntimeException: Can't find resource solrconfig.xml Hmmm, we've been moving around the config directory lately... what version are you working off of. Check that the example directory has ./solrconf in it. Then check that there is a ./solrconf/ from wherever you are start

Re: solr setup

2006-03-20 Thread Mike Austin
Ahhh!! OK.. next time you see me you can back-slap me. I was doing a cd into bin and starting tomcat. Now it is working. Sorry to waste your time, it was my mistake all along. I did install tomcat 5.5 but the issue was the startup. Thanks, Mike