Solr Bridge Search Installation Guide



Similar documents
Using Internet or Windows Explorer to Upload Your Site

How to Install Multicraft on a VPS or Dedicated Server (Ubuntu bit)

SOLR INSTALLATION & CONFIGURATION GUIDE FOR USE IN THE NTER SYSTEM

VERSION 9.02 INSTALLATION GUIDE.

Installation, Configuration, and Usage

Livezilla How to Install on Shared Hosting By: Jon Manning

Installing Dspace 1.8 on Ubuntu 12.04

Apache and Virtual Hosts Exercises

INSTALLATION GUIDE MC

Magento Search Extension TECHNICAL DOCUMENTATION

Written by Wirabumi Software Sunday, 30 December :27 - Last Updated Thursday, 03 January :52

Cassandra Installation over Ubuntu 1. Installing VMware player:

Introduction. Installation of SE S AM E BARCODE virtual machine distribution. (Windows / Mac / Linux)

MyanPay API Integration with Magento CMS

WebIOPi. Installation Walk-through Macros

A Step by Step Guide on Integrating Data in

Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A. OwnCloud User Manual. TO I Cafe`

Changing Your Cameleon Server IP

INUVIKA OVD INSTALLING INUVIKA OVD ON UBUNTU (TRUSTY TAHR)

Luminis Platform Banner Document Management Suite Portal Guide. Release November 2011

Setting up Ensembl Solr Search on an Ubuntu external server 22nd November 2013

Contents. TSM Remote Server Installation guide

CORISECIO. Quick Installation Guide Open XML Gateway

Tool-Assisted Knowledge to HL7 v3 Message Translation (TAMMP) Installation Guide December 23, 2009

Configuring MailArchiva with Insight Server

INUVIKA OVD INSTALLING INUVIKA OVD ON RHEL 6

Version USER GUIDE

KonyOne Server Installer - Linux Release Notes

HOW TO BUILD A VMWARE APPLIANCE: A CASE STUDY

MAGEJAM PLUGIN INSTALLATION GUIDE

Managed Devices - Web Browser/HiView

IIS, FTP Server and Windows

Ulteo Open Virtual Desktop Installation

skype ID: store.belvg US phone number:

Content Management System

Ciphermail Gateway Separate Front-end and Back-end Configuration Guide

Fermilab Central Web Service Site Owner User Manual. DocDB: CS-doc-5372

BioWin Network Installation

Installation & Upgrade Guide

skype ID: store.belvg US phone number:

Expresso Quick Install

ultimo theme Update Guide Copyright Infortis All rights reserved

WEB2CS INSTALLATION GUIDE

Newton Linux User Group Graphing SNMP with Cacti and RRDtool

Monitoring disk stats with Cacti

Local Caching Servers (LCS): User Manual

Mastering Advanced GeoNetwork

Partek Flow Installation Guide

Ciphermail Gateway Web LDAP Authentication Guide

Table of Content. 1. Mofluid Installation. 2. Mofluid Uninstallation. a. Magento Connect b. Manual Installation

Magento Extension Point of Sales User Manual Version 1.0

SYWorks Vulnerable Web Applications Compilation For Penetration Testing Installation Guide

Bubble Code Review for Magento

Hadoop Data Warehouse Manual

Recommended File System Ownership and Privileges

Setting Up Scan to SMB on TaskALFA series MFP s.

IMPLEMENTATION OF CIPA - PUDUCHERRY UT SERVER MANAGEMENT. Client/Server Installation Notes - Prepared by NIC, Puducherry UT.

Medooze MCU Video Multiconference Server Installation and configuration guide Ubuntu LTS

Paperless Meeting Software Installation Instructions

BusinessObjects Enterprise XI Release 2

Demo of Data transferring (.CSV Files) from EGX300 to Our local PC/Laptop using- FTP

Configuring Secure Socket Layer (SSL) for use with BPM 7.5.x

User Manual - Help Utility Download MMPCT. (Mission Mode Project Commercial Taxes) User Manual Help-Utility

LAB :: Secure HTTP traffic using Secure Sockets Layer (SSL) Certificate

Setting Up the Mercent Marketplace Price Optimizer Extension

Administrator s Guide: perfsonar MDM 3.0

Bubble Full Page Cache for Magento

Census. di Monitoring Installation User s Guide

Overview of Web Services API

CA Spectrum and CA Service Desk

The Compatible One Application and Platform Service 1 (COAPS) API User Guide

Laboration 3 - Administration

tpischeduler tpischeduler TotalFBO tpischeduler TotalFBO Initial Installation tpischeduler TotalFBO tpischeduler

ISL Online Integration Manual

User s Guide for OpenERP Microsoft Outlook Free Plug-in 1.0 By Axelor

ULTEO OPEN VIRTUAL DESKTOP UBUNTU (PRECISE PANGOLIN) SUPPORT

SFC Featured Categories, Magento Extension Documentation

ITIS 2110 Lab 11: Domain Name Server. Tyler Everhart 11/12/2010

SYSPRO App Store: Registration Guide

Magento OpenERP Integration Documentation

Installation documentation for Ulteo Open Virtual Desktop

OpenGeo Suite for Linux Release 3.0

Feith Dashboard iq Server Version 8.1 Install Guide

The Rockefeller University I NFORMATION T ECHNOLOGY E DUCATION & T RAINING. VPN Configuration Guide for PC/Mac/Linux

InstantSearch+ for Magento Extension

LAMP Quickstart for Red Hat Enterprise Linux 4

CipherMail Gateway Upgrade Guide

ultimo theme Update Guide Copyright Infortis All rights reserved

NEPTUNE LITE / ENTERPRISE DEMO INSTALLTION INSTRUCTIONS V1.3

SETTING UP A LAMP SERVER REMOTELY

Module Private Sales User Manual

Setting Up SSL on IIS6 for MEGA Advisor

Quick Start Guide Joomla!: Guidelines for installation and setup. Why Joomla!

UVOS WEB REGISTRATION EXTENSION MANUAL

USB HSPA Modem. User Manual

About This Document 3. About the Migration Process 4. Requirements and Prerequisites 5. Requirements... 5 Prerequisites... 5

Spectrum Spatial Analyst Version 4.0. Installation Guide for Linux. Contents:

Transcription:

Solr Bridge Search Installation Guide Table of contents 1. Solr Installation 1.1 Tomcat6 (Web server) installation. 1.2 Apache Solr 3.3.0 installation. 1.3 Install SolrBirge package (preconfigured solr instance). 1.4 Make a new context for Solr in Tomcat6 1.5 Database configuration 1.6 Test Solr Bridge installation. 2. Magento extension installation 2.1 Extract and install 2.2 Configuration 3. Run data indexing and enjoy the search 1. Solr Installation 1.1 Tomcat6 (Web server) installation. Run the following command to install Apache Tomcat6 if your server does not exist Tomcat6 yet. sudo apt-get install tomcat6 1.2 Apache Solr 3.3.0 installation. -Go to /usr/local directory by the command: cd /usr/local -Download Solr 3.3.0 by the command: wget http://www.apache.org/dist/lucene/solr/3.3.0/apache-solr-3.3.0.tgz -Extract the apache-solr-3.3.0.tgz file by the command: tar xvzf apache-solr-3.3.0.tgz -Change to the sub directory apache-solr-3.3.0/dist by: cd apache-solr-3.3.0/dist -Copy file apache-solr-3.3.0/dist/apache-solr-3.3.0.war into tomcat webapps by the command: cp apache-solr-3.3.0/dist/apache-solr-3.3.0.war /var/lib/tomcat6/webapps/ solr.war -Restart tomcat6 by the command /etc/init.d/tomcat6 restart -Test solr installation Open browser and try to access the url in the following format: http://<yourdomain or your ip address>:<port>/solr Example: http://localhost:8080/solr 1.3 Install SolrBirge package (preconfigured solr instance). -Get inside the folder apache-solr-3.3.0 by the command: cd /usr/local/apache-solr-3.3.0 -Put the solrbridge.tar.gz (the file attached in email) in /usr/local/apache-solr-3.3.0. In my case, i download the file from other pc by the following command wget http://192.168.2.148/solrbridge.tar.gz -Extract the file solrbridge.tar.gz by the command: tar xvzf solrbridge.tar.gz -Finally, there is a foler name solrbrige in /usr/local/apache-solr-3.3.0

1.4 Make a new context for Solr in Tomcat6 -Create a new file named solr.xml under /var/lib/tomcat6/conf/catalina/localhost by the following command: vi /var/lib/tomcat6/conf/catalina/localhost/solr.xml -And put the following xml code into the file <Context docbase="/var/lib/tomcat6/webapps/solr.war" debug="0" priviledged="true" allowlinking="true" crosscontext="true"> <Environment name="solr/home" type="java.lang.string" value="/usr/local/ apache-solr-3.3.0/solrbridge" override="true" /> </Context> -Restart tomcat 6 1.5 Database configuration -Open /usr/local/apache-solr-3.3.0/solrbridge/solr.xml and change database information according to your own as below: <solr persistent="false"> <property name="databaseurl" value="jdbc:mysql://<databasehost>/<database name>" /> <property name="databaseuser" value="<database user>" /> <property name="databasepassword" value="<database password>" /> -Restart tomcat 6 1.6 Test Solr Bridge installation. Open browser and try to access the url in the following format: http://<yourdomain or your ip address>:<port>/solr Example: http://localhost:8080/solr If you see the result as below, that you are done

2. Magento extension installation 2.1 Extract and install - Extract the file Magento_Solr_Bridge_1.7.tar.gz - After you extract the file, you will have 3 directory app, js, lib - Copy these 3 folders and paste them to your magento root Example: magento application is stored at: /var/www/magento Then /var/www/magento is the magento root -Login to Magento admin panel and then go to System > Configuration -On the left side bar, you will see a section as below:

2.2 Configuration -Solr URL and Main index

-Set the Main index for main website (Click Main website on the left side bar, then select Main index from the dropdown list, and Save configuration) 3. Run data indexing and enjoy the search -Open a web browser and run the URL as the following format to import data from database to Solr index: http://<solr url>:<port>/solr/<core>/dataimport?command=full-import

Example: http://localhost:8080/solr/main/dataimport?command=full-import Result as below: -Run the URL as the following format to see status of indexing process: http://<solr url>:<port>/solr/<core>/dataimport?command=stats Example: http://localhost:8080/solr/main/dataimport?command=stats Result:

-Autocomplete search result

-Search result page

4. Customization By defautl, Magento Solr Bridge works for the default template, so if you created and run Magento with a custom template please do the following: 1. Copy app\design\frontend\default\default\layout\solrsearch.xml to app\design\frontend\default\your TEMPLATE\layout\ 2. Copy app\design\frontend\default\default\template\solrsearch to app\design\frontend\default\your TEMPLATE\template\solrsearch [END] If you have any problem during the installtion process or find any bug inside the extension please contact me: Hau Danh Email: hau.danh@solrbridge.com Phone: +084925752737