Solr Documentation NEEDED | Solr 1.4 on Ubuntu 10.04 LTS


 
Thread Tools Search this Thread
Operating Systems Linux Ubuntu Solr Documentation NEEDED | Solr 1.4 on Ubuntu 10.04 LTS
# 1  
Old 12-05-2011
Solr Documentation NEEDED | Solr 1.4 on Ubuntu 10.04 LTS

I have Solr 1.4 running on Tomcat6 installed in an Ubuntu 10.04 LTS openVZ container. I am looking for documentation on Solr. I need to know where Solr and Tomcat do their logging by default when installed from the standard Ubuntu apt repo. I would like to know more about both technologies but Solr in particular seems to be lacking some good documentation. Can someone point me in the right direction?
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Ubuntu

Emacs printing with Ubuntu 14.04 LTS

I am trying to setup a development environment that mirrors my Windows and SCO Unix systems. I use emacs and I am having trouble printing. I keep getting the error message; Symbol's function definition is void: default-printer-name I have googled this and for possible answers for... (0 Replies)
Discussion started by: trolley
0 Replies

2. Programming

Solr--Basic Example execution error

Hello , I am new bee to Solr and trying to run sample example for solr . java -Durl=http://locahost:8983/solr/update -jar post.jar books.csv Error SimplePostTool version 1.5 Posting files to base url http://locahost:8983/solr/update using content-type... (3 Replies)
Discussion started by: Tomlight
3 Replies

3. UNIX for Dummies Questions & Answers

Error while installing glibc 2.16.0 on ubuntu 12.04 LTS

I come across the following error while configuring glibc 2.16.0 on ubuntu 12.04 LTS:"These critical programs are missing or too old: ld". Please suggest me a solution for the same at the earliest. (1 Reply)
Discussion started by: nov_2012
1 Replies

4. Ubuntu

GUI for a single user using Ubuntu 10.04 LTS

I setup an Ubuntu 10.04 server which has several developers on the box. I have been ask to add a gui to the server. Only one developer want the gui to start when she logs in(runlevel 2 with a GUI). I am used to seeing an /etc/inittab file which I cannot seem to find under this Ubuntu version. So... (1 Reply)
Discussion started by: metallica1973
1 Replies

5. Solaris

Ubuntu 10.04 LTS vs Solaris 10

Hello, I am considering Ubuntu 10.04 (ubuntu-10.04.3-desktop-amd64.iso) and also Solaris 10 (sol-10-u10-ga2-x86-dvd.iso) for different hardware applications and I had a few questions. The hardware on my laptop is: HP Pavilion dv4 2045-dx x64 laptop AMD Turion(tm) II Dual-Core Mobile M500... (4 Replies)
Discussion started by: Marcus Aurelius
4 Replies
Login or Register to Ask a Question
SOLRRESPONSE(3) 							 1							   SOLRRESPONSE(3)

The SolrResponse class

INTRODUCTION
Represents a response from the Solr server. CLASS SYNOPSIS
SolrResponse abstract SolrResponse Constants o const integer$SolrResponse::PARSE_SOLR_OBJ0 o const integer$SolrResponse::PARSE_SOLR_DOC1 Properties o protected integer$http_status o protected integer$parser_mode o protected bool$success o protected string$http_status_message o protected string$http_request_url o protected string$http_raw_request_headers o protected string$http_raw_request o protected string$http_raw_response_headers o protected string$http_raw_response o protected string$http_digested_response Methods o public string SolrResponse::getDigestedResponse (void ) o public int SolrResponse::getHttpStatus (void ) o public string SolrResponse::getHttpStatusMessage (void ) o public string SolrResponse::getRawRequest (void ) o public string SolrResponse::getRawRequestHeaders (void ) o public string SolrResponse::getRawResponse (void ) o public string SolrResponse::getRawResponseHeaders (void ) o public string SolrResponse::getRequestUrl (void ) o public SolrObject SolrResponse::getResponse (void ) o public bool SolrResponse::setParseMode ([int $parser_mode]) o public bool SolrResponse::success (void ) PROPERTIES
o $http_status -The http status of the response. o $parser_mode -Whether to parse the solr documents as SolrObject or SolrDocument instances. o $success -Was there an error during the request o $http_status_message -Detailed message on http status o $http_request_url -The request URL o $http_raw_request_headers -A string of raw headers sent during the request. o $http_raw_request -The raw request sent to the server o $http_raw_response_headers -Response headers from the Solr server. o $http_raw_response -The response message from the server. o $http_digested_response -The response in PHP serialized format. PREDEFINED CONSTANTS
SOLRRESPONSE CLASS CONSTANTS
o SolrResponse::PARSE_SOLR_OBJ -Documents should be parsed as SolrObject instances o SolrResponse::PARSE_SOLR_DOC -Documents should be parsed as SolrDocument instances. PHP Documentation Group SOLRRESPONSE(3)