Deprecated: Optional parameter $shortcode declared before required parameter $args is implicitly treated as a required parameter in /home/ashishka/public_html/wp-content/plugins/wp-cirrus/wp-cirrus.php on line 331

Warning: Cannot modify header information - headers already sent by (output started at /home/ashishka/public_html/wp-content/plugins/wp-cirrus/wp-cirrus.php:331) in /home/ashishka/public_html/wp-content/plugins/all-in-one-seo-pack/app/Common/Meta/Robots.php on line 89

Warning: Cannot modify header information - headers already sent by (output started at /home/ashishka/public_html/wp-content/plugins/wp-cirrus/wp-cirrus.php:331) in /home/ashishka/public_html/wp-includes/feed-rss2.php on line 8
How To Install Apache Solr In Ubuntu | Web Hosting Stuff https://www.ashishkale.in Get solutions under one roof Sat, 25 Jul 2015 13:39:12 +0000 en-US hourly 1 How To Install Apache Solr In Ubuntu https://www.ashishkale.in/how-to-install-apache-solr-in-ubuntu/ https://www.ashishkale.in/how-to-install-apache-solr-in-ubuntu/#respond Sat, 25 Jul 2015 13:38:33 +0000 http://www.ashishkale.in/?p=462 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 [...]

The post How To Install Apache Solr In Ubuntu first appeared on Web Hosting Stuff.

]]>
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.

Apache Solr

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.

]]>
https://www.ashishkale.in/how-to-install-apache-solr-in-ubuntu/feed/ 0