Re: Solr Security

2013-06-24 Thread K Wong
You might want to read up on Jetty webserver security if that is what you are using for the web container. K

Re: Python and solr - Should I give up on this?

2012-04-08 Thread K Wong
Have you looked at Django Haystack? What are you trying to do? What have you looked at? How are the existing methods not meeting your needs? Java is a good web development language if you are evaluating your language options. K On Sat, Apr 7, 2012 at 8:51 PM, Spadez james_will...@hotmail.com

Re: how to change the default path of Solr Tomcat

2010-07-21 Thread K Wong
Check: /var/lib/tomcat5.5/conf/Catalina/localhost/ Are you using Tomcat on a custom port (the default tomcat port is 8080)? Check your ports ($ sudo netstat -nlp) Maybe try searching the file system for the solr.xml file? $ sudo find / -name solr.xml Hope this helps. K On Wed, Jul 21, 2010

Re: Tomcat startup script

2010-06-07 Thread K Wong
I believe that I installed it simply by doing yum install tomcat5 then adjusting the /sbin/chkconfig settings. Did you install tomcat 5.5 from an RPM? Is it not showing up when you do $ sudo /sbin/chkconfig --list tomcat5 K On Mon, Jun 7, 2010 at 8:59 PM, Sixten Otto six...@sfko.com wrote:

Re: Solr on Tomcat, how to use an external data directory?

2010-05-29 Thread K Wong
There are directions on this page under Tomcat on Windows Multiple Solr apps: http://wiki.apache.org/solr/SolrTomcat I'm running a multicore install on RHEL5/Tomcat5.5 and I just followed the docs and it went fine. I'm not sure that I can be of much help other than pointing you to the relevant

Re: Recommended OS

2010-03-18 Thread K Wong
http://wiki.apache.org/solr/FAQ#What_are_the_Requirements_for_running_a_Solr_server.3F I have Solr running on CentOS 5.4. It runs fine on the OpenJDK 1.6.0 and Tomcat 5. If I were to do it again, I'd probably just stick with Jetty. You really will need to read the docs to get the settings right

Re: Recommended OS

2010-03-18 Thread K Wong
-Sebastien Vachon wrote: On 2010-03-18, at 1:03 PM, K Wong wrote: http://wiki.apache.org/solr/FAQ#What_are_the_Requirements_for_running_a_Solr_server.3F I have Solr running on CentOS 5.4. It runs fine on the OpenJDK 1.6.0 and Tomcat 5. If I were to do it again, I'd probably just stick

Re: Multicore Example

2010-02-19 Thread K Wong
The point that these guys are trying to make is that if another program is using the port that Solr is trying to bind to then they will both fight over the exclusive use of the port. Both the netstat and lsof command work fine on my Mac (Leopard 10.5.8). Trinity:~ kelvin$ which netstat