How To Install Apache Solr In Ubuntu

Apache Solr

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/


Vishwajit Kale
Vishwajit Kale blazed onto the digital marketing scene back in 2015 and is the digital marketing strategist of Hostripples, a company that aims to provide affordable web hosting solutions. Vishwajit is experienced in digital and content marketing along with SEO. He's fond of writing technology blogs, traveling and reading.

Recent Posts

The Ultimate Guide to WordPress Maintenance: Tips and Tricks

When you’re running a business that relies on website traffic and sales to succeed. Then you need to keep it…

3 days ago

Migrate In 2024: Our Comprehensive Website Migration Manual to the Next Level

Migration! Yes, this word is very big in the web hosting industry and it has its importance. Especially for businesses…

5 days ago

Unveiling the Importance of Server Maintenance Plans: A Comprehensive Guide

The server is the backbone of the web hosting industry and it acts like a HERO in the web hosting…

2 weeks ago

IP Address is Blocked? A handpicked list of Solutions to Fix it?

Imagine you are on holiday having a cup of tea and browsing your website or blog.Then, what next?You will get…

3 weeks ago

Explained: Difference between Nameservers Vs. DNS

The web hosting industry is growing every minute, day, and year. It has many terminologies that are important to understand…

1 month ago