Re: I it possible to configure solr to show time stamps without the 'Z'- character in the end

2019-04-10 Thread Jan Høydahl
Perhaps an UpdateProcessor is what you need? https://lucene.apache.org/solr/7_7_0//solr-core/org/apache/solr/update/processor/ParseDateFieldUpdateProcessorFactory.html http

Re: I it possible to configure solr to show time stamps without the 'Z'- character in the end

2019-04-08 Thread Shawn Heisey
On 4/8/2019 4:38 AM, Miettinen Jaana (STAT) wrote: I have a problem in solr: I should add several (old) time stamps into my solr documents, but all of them are in local time (UTC+2 or UTC+3 depending on day-light-saving situation). As default solr excepts all time stamps to be in UTC-time and

Re: I it possible to configure solr to show time stamps without the 'Z'- character in the end

2019-04-08 Thread Erick Erickson
When you ask for a field from Solr, it returns _exactly_ what you gave it. So if you input contains the “Z”, the output will. You have to massage it however you want if you want something different. I can imagine at least 3 ways to do this: 1> create a second field with stored=“true”, indexed=“

I it possible to configure solr to show time stamps without the 'Z'- character in the end

2019-04-08 Thread Miettinen Jaana (STAT)
Dear recipient, I have a problem in solr: I should add several (old) time stamps into my solr documents, but all of them are in local time (UTC+2 or UTC+3 depending on day-light-saving situation). As default solr excepts all time stamps to be in UTC-time and adds the 'Z'-character into the end

Re: configure solr kerberos with tomcat

2016-10-09 Thread Shawn Heisey
On 10/9/2016 2:14 AM, 李爽 wrote: > i wonder how to configre solr kerberos with tomcat, as in the tutorial > it shows the configuration procedure with default jetty server: > https://cwiki.apache.org/confluence/display/solr/Kerberos+Authentication+Plugin Since 5.0, Solr no longer officially supports

configure solr kerberos with tomcat

2016-10-09 Thread 李爽
hi, i wonder how to configre solr kerberos with tomcat, as in the tutorial it shows the configuration procedure with default jetty server: https://cwiki.apache.org/confluence/display/solr/Kerberos+Authentication+Plugin thanks.

Re: How to configure solr while having Apostrophes in fields

2016-07-28 Thread nitin.garg88
Thanks Eric , I have put analyser screen shot ,and i am not sure what is the problem in WCF. <http://lucene.472066.n3.nabble.com/file/n4289329/solr-analyser.png> -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-configure-solr-while-having-Apostrophes-in-

Re: How to configure solr while having Apostrophes in fields

2016-07-27 Thread Erick Erickson
generateWordParts="1" generateNumberParts="1" > catenateWords="0" catenateNumbers="0" catenateAll="0" > stemEnglishPossessive="0" splitOnCaseChange="0" > > protected="${home}/solr-configuration/bibliographic-protwords.txt" /> > enablePositionIncrements="true" > > words="${home}/solr-configuration/bibliographic-stopwords.txt"/> > ignoreCase="true" > > synonyms="${home}/solr-configuration/bibliographic-synonyms.txt"/> > mappingFile="${home}/sort.map"/> > > > > Thanks in advance ! > > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/How-to-configure-solr-while-having-Apostrophes-in-fields-tp4289196.html > Sent from the Solr - User mailing list archive at Nabble.com.

How to configure solr while having Apostrophes in fields

2016-07-27 Thread nitin.garg88
Thanks in advance ! -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-configure-solr-while-having-Apostrophes-in-fields-tp4289196.html Sent from the Solr - User mailing list archive at Nabble.com.

RE: How to configure solr to not bind at 8983‏

2015-08-20 Thread Samy Ateia
Ahh thank you, that explains it I changed the port to 9983 not knowing that the stop port would result to the old port. so i guess i just need to change it to something else then. > Subject: Re: How to configure solr to not bind at 8983‏ > To: solr-user@lucene.apache.org >

Re: How to configure solr to not bind at 8983‏

2015-08-20 Thread Shawn Heisey
On 8/20/2015 2:34 AM, Samy Ateia wrote: > I changed the solr listen port in the solr.in.sh file in my solr home > directory by setting the variable: SOLR_PORT=. > But Solr is still trying to also listen on 8983 because it gets started with > the -DSTOP.PORT=8983 variable. > > What is this -D

Re: How to configure solr to not bind at 8983

2015-08-20 Thread Aman Tandon
Hi Samy, Any particular reason to not to use the -p paratmeter to start it on another port? ./solr start -p 9983 With Regards Aman Tandon On Thu, Aug 20, 2015 at 2:02 PM, Modassar Ather wrote: > I think you need to add the port number in solr.xml too under hostPort > attribute. > > STOP.PORT i

How to configure solr to not bind at 8983‏

2015-08-20 Thread Samy Ateia
I changed the solr listen port in the solr.in.sh file in my solr home directory by setting the variable: SOLR_PORT=. But Solr is still trying to also listen on 8983 because it gets started with the -DSTOP.PORT=8983 variable. What is this -DSTOP.PORT variable for and where should I configure

Re: How to configure solr to not bind at 8983

2015-08-20 Thread Modassar Ather
I think you need to add the port number in solr.xml too under hostPort attribute. STOP.PORT is SOLR.PORT-1000 and set under /bin/solr file. As far as I understand this can not be changed but I am not sure. Regards, Modassar On Thu, Aug 20, 2015 at 11:39 AM, Samy Ateia wrote: > I changed the so

How to configure solr to not bind at 8983

2015-08-19 Thread Samy Ateia
I changed the solr listen port in the solr.in.sh file in my solr home directory by setting the variable: SOLR_PORT=. But Solr is still trying to also listen on 8983 because it gets started with the -DSTOP.PORT=8983 variable. What is this -DSTOP.PORT variable for and where should I configure

Re: How to configure Solr to use ZooKeeper ACLs in order to protect it's content

2015-03-20 Thread Dmitry Karanfilov
Hey Per, This is magic! Work like a charm! Thank you for trying reproduce this, for find the reason of issue, for step-by-step instruction and at all - for your time and help! I would never get it worked without your help! Regards, Dmitry

Re: How to configure Solr to use ZooKeeper ACLs in order to protect it's content

2015-03-20 Thread Per Steffensen
VMParamsAllAndReadonlyDigestZkACLProvider" SOLR_ZK_CREDS_AND_ACLS="-DzkDigestUsername=admin-user -DzkDigestPassword=admin-password \ -DzkDigestReadonlyUsername=readonly-user -DzkDigestReadonlyPassword=readonly-password" On 17 March 2015 at 15:50, Dmitry Karanfilov wrote: Hi,

Re: How to configure Solr to use ZooKeeper ACLs in order to protect it's content

2015-03-19 Thread Dmitry Karanfilov
ache.solr.common.cloud.VMParamsSingleSetCredentialsDigestZkCredentialsProvider >> \ >> >> -DZkACLProvider=org.apache.solr.common.cloud.VMParamsAllAndReadonlyDigestZkACLProvider" >> >> SOLR_ZK_CREDS_AND_ACLS="-DzkDigestUsername=admin-user >> -DzkDigestPassword=admin

Re: How to configure Solr to use ZooKeeper ACLs in order to protect it's content

2015-03-17 Thread Dmitry Karanfilov
\ > > -DZkACLProvider=org.apache.solr.common.cloud.VMParamsAllAndReadonlyDigestZkACLProvider" > > SOLR_ZK_CREDS_AND_ACLS="-DzkDigestUsername=admin-user > -DzkDigestPassword=admin-password \ > -DzkDigestReadonlyUsername=readonly-user > -DzkDigestReadonlyPassword=readonl

Re: How to configure Solr to use ZooKeeper ACLs in order to protect it's content

2015-03-17 Thread Dmitry Karanfilov
ssword" On 17 March 2015 at 15:50, Dmitry Karanfilov wrote: > Hi, > > > I'm trying to configure Solr to use ZooKeeper ACLs as it is described on > this wiki page > https://cwiki.apache.org/confluence/display/solr/ZooKeeper+Access+Control, > but I have no luck

How to configure Solr to use ZooKeeper ACLs in order to protect it's content

2015-03-17 Thread Dmitry Karanfilov
Hi, I'm trying to configure Solr to use ZooKeeper ACLs as it is described on this wiki page https://cwiki.apache.org/confluence/display/solr/ZooKeeper+Access+Control, but I have no luck. Do I understand correctly that in order to tell Solr about the credentials required to access the co

Re: How to configure Solr PostingsFormat block size

2015-03-12 Thread Tom Burton-West
Hi Hoss, I created a wrapper class, compiled a jar and included an org.apache.lucene.codecs.Codec file in META-INF/services in the jar file with an entry for the wrapper class :HTPostingsFormatWrapper. I created a collection1/lib directory and put the jar there. (see below) I'm getting the drea

Re: How to configure Solr PostingsFormat block size

2015-01-14 Thread Chris Hostetter
: As a foolish dev (not malicious I hope!), I did mess around with something : like this once; I was writing my own Codec. I found I had to create a file : called META-INF/services/org.apache.lucene.codecs.Codec in my solr plugin jar : that contained the fully-qualified class name of my codec: I

Re: How to configure Solr PostingsFormat block size

2015-01-14 Thread Michael Sokolov
As a foolish dev (not malicious I hope!), I did mess around with something like this once; I was writing my own Codec. I found I had to create a file called META-INF/services/org.apache.lucene.codecs.Codec in my solr plugin jar that contained the fully-qualified class name of my codec: I guess

Re: How to configure Solr PostingsFormat block size

2015-01-13 Thread Chris Hostetter
: This is starting to sound pretty complicated. Are you saying this is not : doable with Solr 4.10? it should be doable in 4.10, using a wrapper class like the one i mentioned below (delegating to Lucene51PostingsFormat instead of Lucene50PostingsFormat) ... it's just that the 4.10 APIs are dan

Re: How to configure Solr PostingsFormat block size

2015-01-13 Thread Tom Burton-West
Thanks Hoss, This is starting to sound pretty complicated. Are you saying this is not doable with Solr 4.10? >>...or at least: that's how it *should* work :) makes me a bit nervous about trying this on my own. Should I open a JIRA issue or am I probably the only person with a use case for repla

Re: How to configure Solr PostingsFormat block size

2015-01-13 Thread Chris Hostetter
: ...the nuts & bolts of it is that the PostingFormat baseclass should take : care of all the SPI "name" registration that you need based on what you : pass to the super() construction ... allthough now that i think about it, : i'm not sure how you'd go about specifying your own name for the :

Re: How to configure Solr PostingsFormat block size

2015-01-13 Thread Chris Hostetter
: assuming I've written the subclass of the postings format, I need to tell : Solr to use it. : : Do I just do something like: : : the postingFormat xml tag in schema.xml just refers to the "name" of the postingFormat in SPI -- which is discussed in the PostingFormat javadocs... https://luc

Re: How to configure Solr PostingsFormat block size

2015-01-13 Thread Tom Burton-West
Thanks Michael and Hoss, assuming I've written the subclass of the postings format, I need to tell Solr to use it. Do I just do something like: Is there a way to set this for all fieldtypes or would that require writing a custom CodecFactory? Tom On Mon, Jan 12, 2015 at 4:46 PM, Chris Hoste

Re: How to configure Solr PostingsFormat block size

2015-01-12 Thread Chris Hostetter
41/Lucene41PostingsFormat.html#Lucene41PostingsFormat%28int,%20int%29>. : > which can also be configured on a per-field basis" : > : > How can we configure Solr to use different (i.e. non-default) mimum and : > maximum block sizes? : > : > Tom : > : : -Hoss http://www.lucidworks.com/

Re: How to configure Solr PostingsFormat block size

2015-01-12 Thread Michael Sokolov
pache.org/core/4_10_2/core/org/apache/lucene/codecs/lucene41/Lucene41PostingsFormat.html#Lucene41PostingsFormat%28int,%20int%29>. which can also be configured on a per-field basis" How can we configure Solr to use different (i.e. non-default) mimum and maximum block sizes? Tom

How to configure Solr PostingsFormat block size

2015-01-12 Thread Tom Burton-West
ed on a per-field basis" How can we configure Solr to use different (i.e. non-default) mimum and maximum block sizes? Tom

Re: How to Configure Solr For Test Purposes?

2014-05-27 Thread Furkan KAMACI
Hi; I've developed a Proxy application that takes request from clients and sends them to Solr then gets response and sends them to client as response. So, I am testing my application, my proxy for Solr. Thanks; Furkan KAMACI 2014-05-27 14:52 GMT+03:00 Tomás Fernández Löbbe : > > What do you su

Re: How to Configure Solr For Test Purposes?

2014-05-27 Thread Tomás Fernández Löbbe
> What do you suggest for my purpose? If a test case fails re-running it for > some times maybe a solution? What kind of configuration do you suggest for > my Solr configuration? > > >From the snippet of test that you showed, it looks like it's testing only Solr functionality. So, first make sure t

Re: How to Configure Solr For Test Purposes?

2014-05-27 Thread Furkan KAMACI
Hi All; I have defined just that: 1 then turned of hard commit. I've run my tests time and time again and did not get any error. Who wants to write a unit test that interacts with Solr as like my situation can use it. Thanks; Furkan KAMACI 2014-05-26 23:37 GMT+03:00 Furkan KAMACI

Re: How to Configure Solr For Test Purposes?

2014-05-26 Thread Furkan KAMACI
Hi Shawn; I know that it is a bad practise but I just commit up to 5 documents and there will not be more than 5 documents at any time at any test method. It is just for test purpose to see that my API works. I want to have automatic tests. What do you suggest for my purpose? If a test case fails

Re: How to Configure Solr For Test Purposes?

2014-05-26 Thread Shawn Heisey
On 5/26/2014 10:57 AM, Furkan KAMACI wrote: > Hi; > > I run Solr within my Test Suite. I delete documents or atomically update > them and check whether if it works or not. I know that I have to setup a > hard/soft commit timing for my test Solr. However even I have that settings: > > >

How to Configure Solr For Test Purposes?

2014-05-26 Thread Furkan KAMACI
Hi; I run Solr within my Test Suite. I delete documents or atomically update them and check whether if it works or not. I know that I have to setup a hard/soft commit timing for my test Solr. However even I have that settings: 1 true 1 and even

Re: How to configure solr to our java project in eclipse

2013-10-27 Thread Amit Nithian
at we need is,when we run the project,the solr should be > > automatically > > start. > > > > our project is a java project with tomcat in eclipse. > > > > How can i achieve this. > > > > Please help me. > > > > Thankyou. > > Girid

Re: How to configure solr to our java project in eclipse

2013-10-27 Thread Amit Aggarwal
art. > > our project is a java project with tomcat in eclipse. > > How can i achieve this. > > Please help me. > > Thankyou. > Giridhar > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/How-to-configure-solr-to-our-java-project-in-eclipse-tp4097954.html > Sent from the Solr - User mailing list archive at Nabble.com. >

Re: How to configure solr to our java project in eclipse

2013-10-27 Thread Rafał Kuć
> our project is a java project with tomcat in eclipse. > How can i achieve this. > Please help me. > Thankyou. > Giridhar > -- > View this message in context: > http://lucene.472066.n3.nabble.com/How-to-configure-solr-to-our-java-project-in-eclipse-tp4097954.html &g

How to configure solr to our java project in eclipse

2013-10-27 Thread giridhar
automatically start. our project is a java project with tomcat in eclipse. How can i achieve this. Please help me. Thankyou. Giridhar -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-configure-solr-to-our-java-project-in-eclipse-tp4097954.html Sent from the Solr

Re: Configure Solr to use http proxy for querying shards?

2013-10-02 Thread Dan Bolser
In answer to my own question (with help from steffkes in IRC): Solr doesn't allow for proxy configuration, however, you can configure the proxy used by the JVM, and Solr uses the 'SystemDefaultHttpClient', i.e. java -jar start.jar\ -Dhttp.proxyHost=our.proxy.boxy -Dhttp.proxyPort=8080 Cheers,

Configure Solr to use http proxy for querying shards?

2013-10-02 Thread Dan Bolser
Hi, I'm running my Solr server on a box which can only see 'the web' via an http proxy. For most applications it's as simple as setting http_proxy in the shell environment to get them to see the 'the web'. However, this isn't working for Solr. The reason this is an issue is because my Solr server

Re: How should I configure Solr to support multi-word synonyms?

2013-03-15 Thread Felipe Lahti
Hi, I also have been using that plugin (https://github.com/healthonnet/hon- lucene-synonyms) in a project and it's been working pretty well. But I think Solr should handle multi-word synonyms natively (BTW, there is a story in jira for that https://issues.apache.org/jira/browse/SOLR-4381). One dow

Re: How should I configure Solr to support multi-word synonyms?

2013-03-15 Thread rulinma
Mark -- View this message in context: http://lucene.472066.n3.nabble.com/How-should-I-configure-Solr-to-support-multi-word-synonyms-tp4044578p4047678.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: How should I configure Solr to support multi-word synonyms?

2013-03-04 Thread Jan Høydahl
Hi, I have been using this plugin with success: https://github.com/healthonnet/hon-lucene-synonyms While it gives you multi-word synonyms, you lose the ability to have different synonym dictionaries per field. -- Jan Høydahl, search solution architect Cominvent AS - www.cominvent.com Solr Train

Re: How should I configure Solr to support multi-word synonyms?

2013-03-04 Thread Jack Krupansky
ate terms, so using the keyword tokenizer will not work since it will treat "phrase one" as a single term. -- Jack Krupansky -Original Message- From: David Sharpe Sent: Monday, March 04, 2013 1:40 PM To: solr-user@lucene.apache.org Subject: How should I configure Solr t

How should I configure Solr to support multi-word synonyms?

2013-03-04 Thread David Sharpe
Hello Solr mailing list, I have read many posts and run many tests, but still I cannot get multi-word synonyms behaving the way I think they should. I would appreciate your advice. Here is an example of the behaviour I am trying to achieve: *# Given synonyms.txt wordOne, phrase one * 1. At

Re: How to Configure Solr to pick my lucene custom filter

2011-01-26 Thread Valiveti
f having a filter that can get hold of this rules and process. Note: The rules are not same for all documents. Thanks, Valiveti -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-Configure-Solr-to-pick-my-lucene-custom-filter-tp2331928p2357828.html Sent from the S

Re: How to Configure Solr to pick my lucene custom filter

2011-01-26 Thread Erick Erickson
; > Thanks, > Valiveti > -- > View this message in context: > http://lucene.472066.n3.nabble.com/How-to-Configure-Solr-to-pick-my-lucene-custom-filter-tp2331928p2354772.html > Sent from the Solr - User mailing list archive at Nabble.com. >

Re: How to Configure Solr to pick my lucene custom filter

2011-01-26 Thread Valiveti
. Is there a way that this filter can be configured to the default search handlers to be picked during search? I havent written any analyzers or tokenfilters. Are they needed for this scenario? Thanks, Valiveti -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-Configure

Re: How to Configure Solr to pick my lucene custom filter

2011-01-25 Thread Erick Erickson
; Thanks, > Valiveti > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/How-to-Configure-Solr-to-pick-my-lucene-custom-filter-tp2331928p2334120.html > Sent from the Solr - User mailing list archive at Nabble.com. >

Re: How to Configure Solr to pick my lucene custom filter

2011-01-25 Thread Valiveti
-- View this message in context: http://lucene.472066.n3.nabble.com/How-to-Configure-Solr-to-pick-my-lucene-custom-filter-tp2331928p2334120.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: How to Configure Solr to pick my lucene custom filter

2011-01-25 Thread Erick Erickson
alter solrconfig.xml with an addition al section (see the example solrconfig.xml). Best Erick On Tue, Jan 25, 2011 at 12:07 PM, Valiveti wrote: > > Hi , > > I have written a lucene custom filter. > I could not figure out on how to configure Solr to pick this custom filter > for search. &g

How to Configure Solr to pick my lucene custom filter

2011-01-25 Thread Valiveti
Hi , I have written a lucene custom filter. I could not figure out on how to configure Solr to pick this custom filter for search. How to configure Solr to pick my custom filter? Will the Solr standard search handler pick this custom filter? Thanks, Valiveti -- View this message in context

RE: configure solr

2009-11-30 Thread Jill Han
I got it running. -Dsolr.solr.home=c:\web\solr is needed. Thanks all for the help, Jill -Original Message- From: dipti khullar [mailto:dipti.khul...@gmail.com] Sent: Thursday, November 26, 2009 11:01 AM To: solr-user@lucene.apache.org Subject: Re: configure solr X-HOSTLOC: alverno.edu

Re: configure solr

2009-11-26 Thread dipti khullar
Hi 1. Issue with jetty: When you start the jetty server by running start.jar, just look at the logs to verify whether jetty has started successfully or not. At times, the port you are using to start jetty(in your case 8983) could be used by some other apps, which can cause issues in start up. 2.

Re: configure solr

2009-11-24 Thread Joel Nylund
for #1, under example, is there a webapps folder, does it contain solr.war ? are there any errors in your startup log for jetty, does it say anything about setting up solr, and solr home etc. Joel On Nov 24, 2009, at 4:55 PM, Jill Han wrote: Hi, I just downloaded solr -1.4.0 to my compute

Re: configure solr

2009-11-24 Thread Erick Erickson
For the second question, do the instructions here help? http://wiki.apache.org/solr/SolrTomcat I suspect your SOLR instance doesn't know where to find the SOLR config files. So a severe error, indeed. It can't find them at all . WARNING: I'm *really* not a tomcat expert, and the instructions at t

configure solr

2009-11-24 Thread Jill Han
Hi, I just downloaded solr -1.4.0 to my computer, C:\apache-solr-1.4.0. 1.I followed the instruction to run the sample, java -jar start.jar at C:\apache-solr-1.4.0\example And then go to http://localhost:8983/solr/admin, however, I got HTTP ERROR: 404 NOT_FOUND RequestURI=/s

Re: How to configure Solr 1.3 on Websphere 6.1

2009-09-29 Thread Chris Hostetter
: I have been trying to deploy Solr on websphere but no luck yet. : I was trying to deploy the war file under "dist" folder, but I kept getting : errors. (recent one is that it couldn't find the configuration file). When I Did you start by going through the tutorial using the instance of jetty in

How to configure Solr 1.3 on Websphere 6.1

2009-09-22 Thread adnanqureshi
Hi all, Solr 1.3 Websphere 6.1 I have been looking for some documentation on how to configure Solr on Websphere but no luck yet. Can some one suggest me some document which can give me the overview on how to get started with Solr on Websphere and how to integrate it with websites (Java/JSP). I

Re: How to configure Solr in Glassfish ?

2009-08-04 Thread Ilan Rabinovitch
On 7/20/09 11:08 PM, huenzhao wrote: Yes, I don't know how set solr.home in glassfish with centOS. I tried to configure the solr.home, but the error log is:"looking for solr.xml: /var/deploy/solr/solr.xml" Is that the appropriate path for your solr.home? What did you intend to set it to?

Re: How to configure Solr in Glassfish ?

2009-07-20 Thread huenzhao
nzhao wrote: > >> >> I want use glassfish as the solr search server, but I don't know how to >> configure. >> Anybody knows? >> >> enzhao...@gmail.com >> Thanks! >> >> -- >> View this message in context: &

Re: How to configure Solr in Glassfish ?

2009-07-20 Thread Mark Miller
hao wrote: > > I want use glassfish as the solr search server, but I don't know how to > configure. > Anybody knows? > > enzhao...@gmail.com > Thanks! > > -- > View this message in context: > http://www.nabble.com/How-to-configure-Solr--in-Glassfish---tp24565758p2

How to configure Solr in Glassfish ?

2009-07-20 Thread huenzhao
I want use glassfish as the solr search server, but I don't know how to configure. Anybody knows? enzhao...@gmail.com Thanks! -- View this message in context: http://www.nabble.com/How-to-configure-Solr--in-Glassfish---tp24565758p24565758.html Sent from the Solr - User mailing list ar

Re: Configure solr on tomcat with different indexes

2008-01-06 Thread Laxmilal Menaria
Thanks Hoss, I have specified the solr/home = c:\web\solr1, and now have updated the at solrconfig.xml and got results. LM On 1/6/08, Chris Hostetter <[EMAIL PROTECTED]> wrote: > > > : I have tried with solr1.xml and add a solr/home in that, but after that > its > : not showing any results, bec

Re: Configure solr on tomcat with different indexes

2008-01-06 Thread Chris Hostetter
: I have tried with solr1.xml and add a solr/home in that, but after that its : not showing any results, because its search by default in : Tomcat\solr\data\index. If i'm understanding you: you've got a tomcat context file named solr1.xml, and in it you specify a JNDI value for "solr/home" ... w

Re: Configure solr on tomcat with different indexes

2008-01-03 Thread Laxmilal Menaria
SolrTomcat#head-024d7e11209030f1dbcac9974e55106abae837ac > > using different values for solr home should give you new indexes for each. > > ryan > > Laxmilal Menaria wrote: > > Hello, > > > > I have configured solr with tomcat for multiple webapp. This > configuration > > use common

Re: Configure solr on tomcat with different indexes

2008-01-03 Thread Ryan McKinley
now I want to configure solr on different Indexes with tomcat, Please let me how it is possible.

Configure solr on tomcat with different indexes

2008-01-03 Thread Laxmilal Menaria
Hello, I have configured solr with tomcat for multiple webapp. This configuration use common index, so now I want to configure solr on different Indexes with tomcat, Please let me how it is possible. -- Thanks, Laxmilal menaria http://www.chambal.com/ http://www.minalyzer.com/ http

Re: No search results when configure solr on tomcat as service

2008-01-02 Thread Laxmilal Menaria
Have configured successfully and getting search results. Now I want to configure solr on different Indexes with tomcat, Please let me how it is possible. On 1/3/08, Laxmilal Menaria <[EMAIL PROTECTED]> wrote: > > I have created index using jetty and after that have created multiple &

Re: How to configure Solr on Tomcat 6.0 as windows Service

2008-01-02 Thread Laxmilal Menaria
Have configured successfully. Now I want to configure solr on different Indexes with tomcat, Please let me how it is possible. On 1/3/08, Laxmilal Menaria <[EMAIL PROTECTED]> wrote: > > I have already running tomcat on server. > > On 1/3/08, Norberto Meijome <[EMAIL PROTECTE

Re: How to configure Solr on Tomcat 6.0 as windows Service

2008-01-02 Thread Laxmilal Menaria
I have already running tomcat on server. On 1/3/08, Norberto Meijome <[EMAIL PROTECTED]> wrote: > > On Wed, 2 Jan 2008 16:25:58 +0530 > "Laxmilal Menaria" <[EMAIL PROTECTED]> wrote: > > > I have tried Solr using jetty, its run on command prompt, but now I want > to > > comfigure solr on tomcat-6,

Re: No search results when configure solr on tomcat as service

2008-01-02 Thread Laxmilal Menaria
I have created index using jetty and after that have created multiple webapp with tomcat, data index folder is copied to webapps. On 1/2/08, Ryan McKinley <[EMAIL PROTECTED]> wrote: > > Are you indexing files while tomcat is running? If so, are you sending > the message? If so, can you see what

Re: How to configure Solr on Tomcat 6.0 as windows Service

2008-01-02 Thread Norberto Meijome
On Wed, 2 Jan 2008 16:25:58 +0530 "Laxmilal Menaria" <[EMAIL PROTECTED]> wrote: > I have tried Solr using jetty, its run on command prompt, but now I want to > comfigure solr on tomcat-6, so nay one know how to configure it as windows > service using tomcat. Any particular reason you don't use Je

Re: No search results when configure solr on tomcat as service

2008-01-02 Thread Ryan McKinley
Are you indexing files while tomcat is running? If so, are you sending the message? If so, can you see what is happening in the logs? The jetty example and your tomcat setup probably put their indexes in different places, so they will not have the same results. ryan Laxmilal Menaria wrot

Re: How to configure Solr on Tomcat 6.0 as windows Service

2008-01-02 Thread Ryan McKinley
For tomcat configuration notes, check: http://wiki.apache.org/solr/SolrTomcat I don't use tomcat, (their user list may be more useful if something goes wrong) - but this may help: http://tomcat.apache.org/tomcat-5.5-doc/windows-service-howto.html ryan Laxmilal Menaria wrote: Hello everyone,

No search results when configure solr on tomcat as service

2008-01-02 Thread Laxmilal Menaria
Hello, I have configured solr as Multiple Solr appswith tomcat 5.5, using http://wiki.apache.org/solr/SolrTomcat for configuration. After configuration and search with admin panel it doesn't show any results, but

How to configure Solr on Tomcat 6.0 as windows Service

2008-01-02 Thread Laxmilal Menaria
Hello everyone, I have tried Solr using jetty, its run on command prompt, but now I want to comfigure solr on tomcat-6, so nay one know how to configure it as windows service using tomcat. Please let me know how its is possible. -- Thanks in advance, Laxmilal menaria http://www.chambal.com/ ht