Re: HTTP Error 500 - Problem accessing /solr/

2019-12-04 Thread Erick Erickson
see any issues there. Do you know what can be wrong? > > HTTP ERROR 500 > Problem accessing /solr/. Reason: > Server Error > Caused by: > javax.servlet.ServletException: javax.servlet.UnavailableException: Error > processing the request. CoreContainer

HTTP Error 500 - Problem accessing /solr/

2019-12-04 Thread Liles, Carolyn M
the Solr dashboard. We are new to Solr and Zookeeper. We already checked our solr.xml file for any corruption and we don't see any issues there. Do you know what can be wrong? HTTP ERROR 500 Problem accessing /solr/. Reason: Server Error Caused by: javax.servlet.ServletExce

Re: Error when indexing with SolrJ HTTP ERROR 405

2018-03-20 Thread Shawn Heisey
On 3/18/2018 9:46 PM, Khalid Moustapha Askia wrote: SolrClient client = new HttpSolrClient.Builder(" http://localhost:8983/solr/#/corename";).build(); When I remove the "#" It throws a NullPointerException URLs with # in them will ONLY work in a browser.  They will not work for SolrJ.  T

Re: Error when indexing with SolrJ HTTP ERROR 405

2018-03-20 Thread Zheng Lin Edwin Yeo
- > > > Exception in thread "main" > > > org.apache.solr.client.solrj.impl.HttpSolrClient$RemoteSolrException: > > Error > > > from server at http://localhost:8983/solr/#/corename: Expected mime > type > > > applica

Re: Error when indexing with SolrJ HTTP ERROR 405

2018-03-19 Thread Vincenzo D'Amore
eption: > Error > > from server at http://localhost:8983/solr/#/corename: Expected mime type > > application/octet-stream but got text/html. > > > > > > Error 405 HTTP POST method is not supported by this > URL > > > > HTTP ERROR 405

Re: Error when indexing with SolrJ HTTP ERROR 405

2018-03-19 Thread Shamik Sinha
ror > from server at http://localhost:8983/solr/#/corename: Expected mime type > application/octet-stream but got text/html. > > > Error 405 HTTP POST method is not supported by this URL > > HTTP ERROR 405 > Problem accessing /solr/index.html. Reas

Error when indexing with SolrJ HTTP ERROR 405

2018-03-19 Thread Khalid Moustapha Askia
.HttpSolrClient$RemoteSolrException: Error from server at http://localhost:8983/solr/#/corename: Expected mime type application/octet-stream but got text/html. Error 405 HTTP POST method is not supported by this URL HTTP ERROR 405 Problem accessing /solr/index.html. Reason

Re: HTTP ERROR 504 - Optimize

2017-07-31 Thread Erick Erickson
When? When you optimize? During queries? If the latter, I doubt you'll fix it with optimization. On Jul 31, 2017 1:19 AM, "marotosg" wrote: > Basically an issue with loadbalancer timeout. > > > > -- > View this message in context: http://lucene.472066.n3. >

Re: HTTP ERROR 504 - Optimize

2017-07-31 Thread marotosg
Basically an issue with loadbalancer timeout. -- View this message in context: http://lucene.472066.n3.nabble.com/HTTP-ERROR-504-Optimize-tp4345815p4348330.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: HTTP ERROR 504 - Optimize

2017-07-13 Thread Walter Underwood
017, at 5:42 AM, marotosg wrote: > > Hi, > > I am getting HTTP ERROR 504 when doing an optimization operation. Not > always, it's pretty random. > Trying to figure out if Solr, jetty or either the browser breaks the > connection after specific time. > I have successfu

HTTP ERROR 504 - Optimize

2017-07-13 Thread marotosg
Hi, I am getting HTTP ERROR 504 when doing an optimization operation. Not always, it's pretty random. Trying to figure out if Solr, jetty or either the browser breaks the connection after specific time. I have successful optimizations which take aprox 10 minutes. I had a look to Solr Source

php apache solr client - Solr HTTP Error 58: 'Problem with the local SSL certificate'

2017-04-21 Thread bay chae
e when solr server does not force ssl on the client. The problem I am having is: [21-Apr-2017 17:00:36 UTC] Solr HTTP Error 58: 'Problem with the local SSL certificate' #0 Controller.php(37): SolrClient->ping() With options: $options = array ( 'hostname' =>

Re: Posting files 405 http error

2016-11-03 Thread Pablo Anzorena
When I manually copy one collection to another, I copy the core.properties from the source to the destination with the name core.properties.unloaded so there is no problem. So the steps I'm doing are: 1> index to my source collection. 2>Copy the directory of the source collection, excluding the co

Re: Posting files 405 http error

2016-11-03 Thread Erick Erickson
Wait. What were you doing originally? Just copying the entire SOLR_HOME over or something? Because one of the things each core carries along is a "core.properties" file that identifies 1> the name of the core, something like collection_shard1_replica1 2> the name of the collection the core belongs

Re: Posting files 405 http error

2016-11-03 Thread Pablo Anzorena
Thanks Shawn. Actually there is no load balancer or proxy in the middle, but even if there was, how would you explain that I can index if a create a completely new collection? I figured out how to fix it. What I'm doing is creating a new collection, then unloading it (by unloading all the shards/

Re: Posting files 405 http error

2016-11-03 Thread Shawn Heisey
On 11/3/2016 9:10 AM, Pablo Anzorena wrote: > Thanks for the answer. > > I checked the log and it wasn't logging anything. > > The error i'm facing is way bizarre... I create a new fresh collection and > then index with no problem, but it keeps throwing this error if i copy the > collection from on

Re: Posting files 405 http error

2016-11-03 Thread Pablo Anzorena
Thanks for the answer. I checked the log and it wasn't logging anything. The error i'm facing is way bizarre... I create a new fresh collection and then index with no problem, but it keeps throwing this error if i copy the collection from one solrcloud to the other and then index. Any clue on wh

Re: Posting files 405 http error

2016-11-01 Thread Erick Erickson
What does the solr log say? I'd tail the Solr log while sending the query, that'll do two things: 1> insure that your request is actually getting to the Solr you expect. 2> the details in the solr log are often much more helpful than what gets returned to the client. Best, Erick On Tue, Nov 1,

Posting files 405 http error

2016-11-01 Thread Pablo Anzorena
Hey, I'm indexing a file with a delete query in xml format using the post.jar. I have two solrclouds, which apparently have all the same configurations. The thing is that I have no problem when indexing in one of them, but the other keeps giving me this error: SimplePostTool version 5.0.0 Posting

Re: HTTP Error 500 on "/admin/ping" request

2015-08-03 Thread Steven White
> On Mon, Aug 3, 2015 at 2:10 PM, Shawn Heisey wrote: > >> On 8/3/2015 11:34 AM, Steven White wrote: >> > Hi Everyone, >> > >> > I cannot figure out why I'm getting HTTP Error 500 off the following >> code: >> >> >> >> > P

Re: HTTP Error 500 on "/admin/ping" request

2015-08-03 Thread Steven White
hs such as: "/solr/db/config/requestHandler?wt=xml" or "/solr/db/schema/fieldtypes/?wt=xml" or "/solr/db/schema/fields/?wt=xml" ? Steve On Mon, Aug 3, 2015 at 2:10 PM, Shawn Heisey wrote: > On 8/3/2015 11:34 AM, Steven White wrote: > > Hi Everyone, > >

Re: HTTP Error 500 on "/admin/ping" request

2015-08-03 Thread Shawn Heisey
On 8/3/2015 11:34 AM, Steven White wrote: > Hi Everyone, > > I cannot figure out why I'm getting HTTP Error 500 off the following code: > Ping query caused exception: Bad contentType for search handler > :application/atom+xml Your application is sending an incorrect Cont

HTTP Error 500 on "/admin/ping" request

2015-08-03 Thread Steven White
Hi Everyone, I cannot figure out why I'm getting HTTP Error 500 off the following code: // Using: org.apache.wink.client String contentType = "application/atom+xml"; URI uri = new URI("http://localhost:8983"; + "/solr/db/admin/ping?wt=xml");

Re: XsltUpdateRequestHandler - HTTP ERROR 404

2012-12-18 Thread Lighton Phiri
Finally got this to work --thank you Upayavira. Turns out the issue was as a result of a syntax error in my stylesheet --I had instread of :( I didn't notice the xsltproc compilation errors before because it processed the valid styles and printed out the errors at the beginning of output. compi

Re: XsltUpdateRequestHandler - HTTP ERROR 404

2012-12-18 Thread Lighton Phiri
I finally understand what you meant and called UpdateRequestHandler as shown below. curl "http://localhost:8983/solr/w5/update?commit=true&tr=x.xsl However, I am now getting an error '500 - Unable to initialize Templates' error. Part of error stack is below. I am not quite familiar with Solr erro

Re: XsltUpdateRequestHandler - HTTP ERROR 404

2012-12-18 Thread Lighton Phiri
> Are you using 4.0? In 4.0 it has been merged into a single Sorry, forgot to specify Solr version --I am working with 4.0 >As I understand it, if you post XML tohttp://localhost:8983/solr/update and >provide a tr parameter, it will do > the same thing as the XsltUpdateRequestHandler did. Still

Re: XsltUpdateRequestHandler - HTTP ERROR 404

2012-12-18 Thread Upayavira
Tue, Dec 18, 2012, at 02:00 PM, Lighton Phiri wrote: > I am trying to test-drive an XsltUpdateRequestHandler I've set up on > one of my Solr cores. I am getting an 'HTTP ERROR 404' error and can't > quite figure out why. I've tried moving my xslt stylesheet to >

Re: Jetty rerturning HTTP error code 413

2012-05-22 Thread Sai
Hi Alexandre, Can you please let me know how did you fix this issue. I am also getting this error when I pass very large query to Solr. An reply is highly appreciated. Thanks, Sai

Re: solr - http error 404 when requesting solrconfig.xml or schema.xml

2011-11-29 Thread Chris Hostetter
: To answer myself (sorry for the noise) - removed accidentally the admin handler section (only : ping was there) and thats causing the issue, after fixing this error, : all is fine again. Right, this handler... ...automaticly registers most of the /admin/* handlers

Re: solr - http error 404 when requesting solrconfig.xml or schema.xml

2011-11-29 Thread Torsten Krah
To answer myself (sorry for the noise) - removed accidentally the admin handler section (only ping was there) and thats causing the issue, after fixing this error, all is fine again. Torsten smime.p7s Description: S/MIME cryptographic signature

Re: solr - http error 404 when requesting solrconfig.xml or schema.xml

2011-11-29 Thread Chantal Ackermann
Hi Torsten, some more information would help us to help you: - does calling /apps/solrslave/admin/ return the Admin Homepage? - what is the path to your SOLR_HOME - where in the filesystem are solrconfig.xml and schema.xml (even if this sounds redundant, maybe they are just misplaced) - their read

solr - http error 404 when requesting solrconfig.xml or schema.xml

2011-11-29 Thread Torsten Krah
Hi, got some interesting problem and don't know how to debug further. I am using an external solr home configured via jndi. Deployed my war file (context is /apps/solrslave/) and if want to look at the schema: /apps/solrslave/admin/file/?contentType=text/xml;charset=utf-8&file=schema.xml the res

Re: HTTP ERROR 400 undefined field: *

2011-02-08 Thread Jed Glazner
here is the ticket: https://issues.apache.org/jira/browse/SOLR-2352 On 02/08/2011 11:27 AM, Jed Glazner wrote: So I re-indexed some of the content, but no dice. Per Hoss, I tried disabling the TVC and it worked great. We're not really using tvc right now since we made a decision to turn off hig

Re: HTTP ERROR 400 undefined field: *

2011-02-08 Thread Jed Glazner
So I re-indexed some of the content, but no dice. Per Hoss, I tried disabling the TVC and it worked great. We're not really using tvc right now since we made a decision to turn off highlighting for the moment, so this isn't a huge deal. I'll create a new jira issue. FYI here is my query from

Re: HTTP ERROR 400 undefined field: *

2011-02-07 Thread Chris Hostetter
: The stack trace is attached. I also saw this warning in the logs not sure >From your attachment... 853 SEVERE: org.apache.solr.common.SolrException: undefined field: score 854 at org.apache.solr.handler.component.TermVectorComponent.process(TermVectorComponent.java:142) 855 at org.ap

Re: HTTP ERROR 400 undefined field: *

2011-02-07 Thread Jed Glazner
earch :: http://search-lucene.com/ - Original Message From: Erick Erickson To: solr-user@lucene.apache.org Sent: Sun, February 6, 2011 9:43:00 AM Subject: Re: HTTP ERROR 400 undefined field: * I *think* that there was a post a while ago saying that if you were using trunk 3_x one of the r

Re: HTTP ERROR 400 undefined field: *

2011-02-06 Thread Otis Gospodnetic
r-user@lucene.apache.org > Sent: Sun, February 6, 2011 9:43:00 AM > Subject: Re: HTTP ERROR 400 undefined field: * > > I *think* that there was a post a while ago saying that if you were > using trunk 3_x one of the recent changes required re-indexing, but don't > quote

Re: HTTP ERROR 400 undefined field: *

2011-02-06 Thread Erick Erickson
o. >> : Everything was working pretty well, but we decided that we should update >> and >> : get what was at the head. However after upgrading, I am now getting >> this >> >> FWIW: please be specific. "head" of what? the 3x branch? or trunk? what &g

Re: HTTP ERROR 400 undefined field: *

2011-02-04 Thread Jed Glazner
nk? what revision in svn does that corrispond to? (the "svnversion" command will tell you) : HTTP ERROR 400 undefined field: * : : If I clear the fl parameter (default is set to *, score) then it works fine : with one big problem, no score data. If I try and set fl=score I get the same

Re: HTTP ERROR 400 undefined field: *

2011-02-03 Thread Chris Hostetter
? or trunk? what revision in svn does that corrispond to? (the "svnversion" command will tell you) : HTTP ERROR 400 undefined field: * : : If I clear the fl parameter (default is set to *, score) then it works fine : with one big problem, no score data. If I try and set fl=score I

Re: HTTP ERROR 400 undefined field: *

2011-02-03 Thread Grijesh
How you have upgraded ? are you changed every thing all jars ,data,config or any thing using from older version? - Thanx: Grijesh http://lucidimagination.com -- View this message in context: http://lucene.472066.n3.nabble.com/HTTP-ERROR-400-undefined-field-tp2417938p2421569.html Sent from

HTTP ERROR 400 undefined field: *

2011-02-03 Thread Jed Glazner
Hey Guys, I was working on an checkout of the 3.x branch from about 6 months ago. Everything was working pretty well, but we decided that we should update and get what was at the head. However after upgrading, I am now getting this error through the admin: HTTP ERROR 400 undefined field

Re: Jetty rerturning HTTP error code 413

2010-08-19 Thread Alexandre Rocco
Hi diddier, Nevermind. I figured it out. There was some miscommunication between me and our IT guy. Thanks for helping. It's fixed now. Alexandre On Thu, Aug 19, 2010 at 9:59 AM, Alexandre Rocco wrote: > Hi diddier, > > I have updated my etc/jetty.xml and updated my headerBufferSize to 2x as:

Re: Jetty rerturning HTTP error code 413

2010-08-19 Thread Alexandre Rocco
Hi diddier, I have updated my etc/jetty.xml and updated my headerBufferSize to 2x as: 16384 But the error persists. Do you know if there is any other config that should be updated so this setting works? Also, is there any way to check if jetty is use this config inside Solr admin pages? I know th

Re: Jetty rerturning HTTP error code 413

2010-08-18 Thread Yonik Seeley
Yep, or you can submit the query via POST, which has a much bigger limit on the size of the body. -Yonik http://www.lucidimagination.com On Wed, Aug 18, 2010 at 3:58 PM, didier deshommes wrote: > Hi Alexandre, > Have you tried setting a higher headerBufferSize?  Look in > etc/jetty.xml and sear

Re: Jetty rerturning HTTP error code 413

2010-08-18 Thread didier deshommes
Hi Alexandre, Have you tried setting a higher headerBufferSize? Look in etc/jetty.xml and search for 'headerBufferSize'; I think it controls the size of the url. By default it is 8192. didier On Wed, Aug 18, 2010 at 2:43 PM, Alexandre Rocco wrote: > Guys, > > We are facing an issue executing ve

Jetty rerturning HTTP error code 413

2010-08-18 Thread Alexandre Rocco
Guys, We are facing an issue executing very large query (~4000 bytes in the URL) in Solr. When we execute the query, Solr (probably Jetty) returns a HTTP 413 error (FULL HEAD). I guess that this is related to the very big query being executed, and currently we can't make it short. Is there any co

Re: HTTP ERROR: 500 - java.lang.ArrayIndexOutOfBoundsException

2010-07-17 Thread Lance Norskog
You cannot sort on text fields, only string&number&date fields. The ArrayIndexOutOfBounds exception happens when there are more terms to sort on than documents (I think?). On Sat, Jul 17, 2010 at 3:11 PM, Koji Sekiguchi wrote: > (10/07/18 4:51), Girish wrote: >> >>  Hi Lance, >> >> Thanks for th

Re: HTTP ERROR: 500 - java.lang.ArrayIndexOutOfBoundsException

2010-07-17 Thread Koji Sekiguchi
(10/07/18 4:51), Girish wrote: Hi Lance, Thanks for the reply! I checked the settings and I don't think it has multivalue setting. Here is the current field configuration: * ** * Tokenized field is one of multiValued type fields since multiple tokens (valu

Re: HTTP ERROR: 500 - java.lang.ArrayIndexOutOfBoundsException

2010-07-17 Thread Girish
Hi Lance, Thanks for the reply! I checked the settings and I don't think it has multivalue setting. Here is the current field configuration: * ** * > * > *Lance Norskog wrote: > > This can happen when there are multiple values in a field. Is 'first' > a multi-valued

Re: HTTP ERROR: 500 - java.lang.ArrayIndexOutOfBoundsException

2010-07-16 Thread Lance Norskog
This can happen when there are multiple values in a field. Is 'first' a multi-valued field? Sorting only works on single-valued fields. After all, if there are multiple values, it can only sort on one field and there is no way to decide which one. So, make sure that 'field' has multiValued='false'

HTTP ERROR: 500 - java.lang.ArrayIndexOutOfBoundsException

2010-07-16 Thread Girish Pandit
Hi, As soon as I add "sort=first+desc" parameter to the select clause, it throws ArrayIndexOutOfBound exception. Please suggest if I am missing anything. http://localhost:8983/solr/select?q=girish&start=0&indent=on&wt=json&sort=first+desc I have close to 1 million records indexed. Thanks Gi

Re: HTTP ERROR: 404 missing core name in path after integrating nutch

2010-03-01 Thread Chris Hostetter
: going to http://localhost:8983/solr/admin suddenly throws a "HTTP ERROR: 404 : missing core name in path" : : Why would adding the above snippet suddenly throw that error? I think you are seeing the effects of SOLR-1743 masking another error ... have you checked your log for ot

Re: HTTP ERROR: 404 missing core name in path after integrating nutch

2010-02-26 Thread Ian Evans
Just wanted to give an update on my efforts. I installed the Feb. 26 update this morning. Was able to access /solr/admin. Copied over the nutch schema.xml. restarted solr and was able to access /solr/admin Edited solrconfig.xml to add the nutch requesthandler snippet from lucidimagination. Resta

HTTP ERROR: 404 missing core name in path after integrating nutch

2010-02-25 Thread Ian M. Evans
/conf/solrconfig.xml: dismax explicit 0.01 content^0.5 anchor^1.0 title^1.2 content^0.5 anchor^1.5 title^1.2 site^1.5 url 2<-1 5<-2 6<90% 100 *:* title url content 0 title 0 url regex going to http://localhost:8983/solr/admin suddenly throws a "HTTP ERROR: 404 missing cor

Re: SolrClient::query(): Solr HTTP Error : 'Couldn't connect to server'

2009-12-11 Thread Israel Ekpo
On Fri, Dec 11, 2009 at 6:49 AM, regany wrote: > > hi, I've (hopefully correctly) install the solr php extension. > > But I'm receiving the following error when trying to run my test script: > > SolrClient::query(): Solr HTTP Error : 'Couldn't connect to s

SolrClient::query(): Solr HTTP Error : 'Couldn't connect to server'

2009-12-11 Thread regany
hi, I've (hopefully correctly) install the solr php extension. But I'm receiving the following error when trying to run my test script: SolrClient::query(): Solr HTTP Error : 'Couldn't connect to server' Any ideas how to figure out why it's giving the error??

RE: HTTP ERROR: 500 No default field name specified

2009-08-17 Thread Kevin Miller
: solr-user@lucene.apache.org Subject: HTTP ERROR: 500 No default field name specified I have a different error once I direct the curl to look in the correct folder for the file. I am getting an HTTP ERROR: 500 No default field name specified. I am using a test word document in the exampledocs

HTTP ERROR: 500 No default field name specified

2009-08-13 Thread Kevin Miller
I have a different error once I direct the curl to look in the correct folder for the file. I am getting an HTTP ERROR: 500 No default field name specified. I am using a test word document in the exampledocs folder. I am issuing the curl command from the exampledocs folder. Following is the

RE: How to troubleshoot this HTTP ERROR: 500 (NULL) error?

2008-04-21 Thread Hung Huynh
April 18, 2008 4:44 PM To: solr-user@lucene.apache.org Subject: Re: How to troubleshoot this HTTP ERROR: 500 (NULL) error? : java.lang.NullPointerException : : at : org.apache.solr.search.SolrQueryParser.getFieldQuery(SolrQueryParser.java:73 : ) I'm guessing this is one of the

Re: How to troubleshoot this HTTP ERROR: 500 (NULL) error?

2008-04-18 Thread Chris Hostetter
: java.lang.NullPointerException : : at : org.apache.solr.search.SolrQueryParser.getFieldQuery(SolrQueryParser.java:73 : ) I'm guessing this is one of the following issues... http://issues.apache.org/jira/browse/SOLR-525 http://issues.apache.org/jira/browse/SOLR-529 ...both have been cha

Re: How to troubleshoot this HTTP ERROR: 500 (NULL) error?

2008-04-18 Thread Otis Gospodnetic
he.org Sent: Friday, April 18, 2008 3:33:17 PM Subject: How to troubleshoot this HTTP ERROR: 500 (NULL) error? I loaded about 20,000 docs. When I tried to do any search, I received the following error. What should I do to fix this? Thanks. -- HTTP ERROR: 500 null java.lang.NullPointerExceptio

How to troubleshoot this HTTP ERROR: 500 (NULL) error?

2008-04-18 Thread Hung Huynh
I loaded about 20,000 docs. When I tried to do any search, I received the following error. What should I do to fix this? Thanks. -- HTTP ERROR: 500 null java.lang.NullPointerException at org.apache.solr.search.SolrQueryParser.getFieldQuery(SolrQueryParser.java:73 ) at

Re: HTTP ERROR: 500: Unable to compile class for JSP

2007-05-17 Thread Laxmilal Menaria
; On 5/17/07, Laxmilal Menaria <[EMAIL PROTECTED]> wrote: > > > > > > > > > Hello everyone, > > > > > > I am new to solr , I have tried to use solr. start.jar from > examples, is > > > successfully running, but when I opened http://localho

Re: HTTP ERROR: 500: Unable to compile class for JSP

2007-05-17 Thread Laxmilal Menaria
start.jar from examples, is > > successfully running, but when I opened http://localhost:8983/solr/admin/ then > > its give me the following exception, > > > > HTTP ERROR: 500 > > Unable to compile class for JSPGenerated servlet error: May 17, 2007 > > 4:11:48 P

Re: HTTP ERROR: 500: Unable to compile class for JSP

2007-05-17 Thread Yonik Seeley
iles\Java\jdk1.6.0_01 On 5/17/07, Laxmilal Menaria <[EMAIL PROTECTED]> wrote: > > > Hello everyone, > > I am new to solr , I have tried to use solr. start.jar from examples, is > successfully running, but when I opened http://localhost:8983/solr/admin/ then > its give me the foll

Re: HTTP ERROR: 500: Unable to compile class for JSP

2007-05-17 Thread Laxmilal Menaria
s give me the following exception, HTTP ERROR: 500 Unable to compile class for JSPGenerated servlet error: May 17, 2007 4:11:48 PM org.apache.jasper.compiler.Compiler generateClass SEVERE: Javac exception Unable to find a javac compiler; com.sun.tools.javac.Main is not on the classpath. Perhaps

HTTP ERROR: 500: Unable to compile class for JSP

2007-05-17 Thread Laxmilal Menaria
Hello everyone, I am new to solr , I have tried to use solr. start.jar from examples, is successfully running, but when I opened http://localhost:8983/solr/admin/ then its give me the following exception, HTTP ERROR: 500 Unable to compile class for JSPGenerated servlet error: May 17, 2007 4:11

Re: http error

2006-09-21 Thread Jeff McCormick
hursday 21 September 2006 2:16 pm, Yonik Seeley wrote: > On 9/21/06, Jeff McCormick <[EMAIL PROTECTED]> wrote: > > I'm getting the following error when I try and hit the admin console: > > > > HTTP ERROR: 500 > > > > dr01142: dr01142 > > > > Reques

Re: http error

2006-09-21 Thread Yonik Seeley
On 9/21/06, Jeff McCormick <[EMAIL PROTECTED]> wrote: I'm getting the following error when I try and hit the admin console: HTTP ERROR: 500 dr01142: dr01142 RequestURI=/solr/admin/stats.jsp Powered by Jetty:// has anyone seen this error before? The queries to this server seem t

http error

2006-09-21 Thread Jeff McCormick
I'm getting the following error when I try and hit the admin console: HTTP ERROR: 500 dr01142: dr01142 RequestURI=/solr/admin/stats.jsp Powered by Jetty:// has anyone seen this error before? The queries to this server seem to work just fine, only the admin console is not working. --