The post How To Install Apache Solr In Ubuntu first appeared on Web Hosting Stuff.
]]>Solr is a search engine platform based on Apache Lucene. It is written in Java and uses the Lucene library to implement indexing.
If you want to install Solr the easy way, you should use this steps. Solr doesn’t work alone; it needs a Java servlet container such as Tomcat or Jetty.
To Install Apache Solr In Ubuntu
Step 1. To Installing Java
Installing Java from the command line.
sudo apt-get install openjdk-7
Step 2. To Installing Tomcat
Install Tomcat from the command line.
sudo apt-get install tomcat7
Step 3. To Installing Solr
1) Download the latest version of Solr 4.8.1 from
http://lucene.apache.org/solr/
2) Expand the archive, and copy Solr’s Java libraries to the Tomcat library directory
sudo cp solr-4.8.1/dist/solrj-lib/* /usr/share/tomcat7/lib/
3) Copy Solr’s logging configuration file to the Tomcat configuration directory
sudo cp solr-4.8.1/example/resources/log4j.properties /var/lib/tomcat7/conf/
4) Copy the Solr webapp to the Tomcat webapps directory.
sudo cp solr-4.8.1/dist/solr-4.8.1.war /var/lib/tomcat7/webapps/solr.war
5) Define the Solr context by modifying the solr.xml file.
sudo vim /var/lib/tomcat7/conf/Catalina/localhost/solr.xml
6) Context fragment pointing to the webapp file from above and to the Solr home directory.
<Context docBase=”/var/lib/tomcat7/webapps/solr.war” debug=”0″ crossContext=”true”>
<Environment name=”solr/home” type=”java.lang.String” value=”/usr/share/tomcat7/solr” override=”true” />
</Context>
Step 5. Configuring Solr
1) Create the Solr home directory.
sudo mkdir /usr/share/tomcat7/solr
2) Copy the Solr configuration files to the Solr home directory.
sudo cp -r solr-4.8.1/example/solr/collection1/conf /usr/share/tomcat7/solr/
The post How To Install Apache Solr In Ubuntu first appeared on Web Hosting Stuff.
]]>The post Apache Solr first appeared on Web Hosting Stuff.
]]>
What is Apache Solr?
Apache Solr is the popular, blazing-fast, open source platform for searches of data stored in HDFS in Hadoop. Solr powers the search and navigation features of many of the world’s largest Internet sites, enabling powerful full-text search and near real-time indexing. Solr enables you to easily create search engines which searches websites, databases and files.Whether users search for tabular, text, geo-location or sensor data in Hadoop, they find it quickly with Apache Solr.
What Solr Does ?
Hadoop operators put documents in Apache Solr by “indexing” via XML, JSON, CSV or binary over HTTP.
Then users can query those petabytes of data via HTTP GET. They can receive XML, JSON, CSV or binary results. Apache Solr is optimized for high volume web traffic.
Top features of Apache Solr
Solr is characterized by various features while its major ones include powerful full-text search, hit highlighting, faceted search, dynamic clustering, database integration, rich document (like Word and PDF) handling, and geospatial search. From its various features we describe the following ones:
How Solr Works ?
Solr is written in Java and runs as a standalone full-text search server within a servlet container such as Jetty. Solr uses the Apache Lucene Java search library at its core for full-text indexing and search, and has REST-like HTTP/XML and JSON APIs that make it easy to use with many programming languages.
Solr’s powerful external configuration allows it to be tailored to almost any type of application without Java coding, and it has an extensive plugin architecture when more advanced customization is required.
Apache Solr includes a deployment methodology to set up a cluster of Solr servers that combines fault tolerance and high availability. This is referred to as SolrCloud. SolrCloud provides distributed indexing and search capabilities, and provides automated failover for queries in the event of any failure to a SolrCloud server.
SolrCloud utilizes Apache ZooKeeper for cluster coordination and configuration.
The post Apache Solr first appeared on Web Hosting Stuff.
]]>