`

Solr: Install

    博客分类:
  • Solr
 
阅读更多

Download

#wget https://archive.apache.org/dist/lucene/solr/4.7.0/solr-4.7.0.tgz

 

Extract

#tar zxf solr-4.7.0.tgz  -C ~/

 

Start

#cd ~/solr-4.7.0/example

#java -jar start.jar

 

Adimn

http://localhost:8983/solr

 

----------------------------------------------------------------------------------------------------------------------------------

Directory listing of the solr-4.7.0 installation after extracting



 



In Solr, a core is composed of a set of configuration files, Lucene index files, and Solr’s transaction log. One Solr server running in Jetty can host multiple cores.

 



 

 -----------------------------------------------------------------------------------------------------------------------------------

Index example docs

#cd $SOLR_INSTALL/example/exampledocs
#java -jar post.jar *.xml

 



 

 

 

 

http://localhost:8983/solr/collection1/browse

 

 

------------------------------------------------------------------------------------------------------------------------------------

<<Solr In Action>> is the best source to study solr.

 

download example source code

#git clone https://github.com/treygrainger/solr-in-action

#cd solr-in-ation

alter the pom.xml   to add the following code to avoid compile error: maven annotations are not supported in source 1.3

 

<project ....>
 <build>
  <plugins>
	<plugin>
		<artifactId>maven-compiler-plugin</artifactId>
		<version>2.3.2</version>
		<configuration>
			<source>1.6</source>
			<target>1.6</target>
		</configuration>
	</plugin>
   </plugins>
  </build>
</project>

#mvn clean package

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  • 大小: 141 KB
  • 大小: 64.8 KB
  • 大小: 123.2 KB
  • 大小: 117.6 KB
  • 大小: 54.9 KB
分享到:
评论

相关推荐

    puppet-ispconfig_solr:在 IspConfig 环境中使用的 solr 包装器

    puppet-ispconfig_solr == 定义:ispconfig_solr::instance 这个定义是 solr::instance 的包装器。... [ jetty_s3_bucket ] 如果app_server是jetty,这个参数表示jetty install存放的s3的名字 [ jetty_download_u

    nodebb-plugin-solr:使用Apache Solr全文搜索NodeBB

    Solr搜索NodeBB : Solr(发音为“ solar”)是来自Apache Lucene项目的开源企业搜索平台。 它的主要功能包括全文搜索,命中突出显示,多面搜索,动态聚类,数据库集成以及丰富的...npm install nodebb-plugin-solr

    java8看不到源码-ansible-role-solr:yauh.solr-用于设置Solr的Ansible角色

    install Solr to solr_home: "{{solr_destination}}/solr/example" # the Solr home directory, unless specified, this will use example solr_memory: 1024 # maximum memory for the Solr process solr_home_...

    rspec-solr:宝石

    安装将此行添加到您的应用程序的Gemfile中: gem 'rspec-solr'然后执行: $ bundle或将其自己安装为: $ gem install rspec-solr用法有关支持的期望的语法,请参见MATCHERS.md 。例子: it "q of 'Buddhism' should ...

    install-apache-solr:Debian、Ubuntu、LinuxMint、Red Hat、Fedora 和 CentOS 上 Tomcat 6 中 Apache Solr 4.xx 的安装脚本

    Solr 4.xx 多核 install.sh 此脚本在 Debian、Ubuntu、LinuxMint、Red Hat、Fedora 和 CentOS 上的 Tomcat 7 中安装当前的多核 Apache Solr 4.xx。 它将选择安装随 Drupal Apache Solr 或 Search API Solr 模块提供...

    gmap-solr:Solr 多边形搜索

    #Learning Solr 多边形搜索 1.安装python要求 pip install -r requrements.txt 2.更改server.py中的基本ul 3.运行服务器 python server.py ##截屏

    elasticsearch-river-solr:用于弹性搜索的 Solr River 插件

    为了安装最新版本的插件,只需运行: bin/plugin install river-solr -url http://bit.ly/1qzA7lB 。 您可以从下表中复制粘贴特定版本的 url,具体取决于您运行的 elasticsearch 版本。版本Solr 河插件弹性搜索掌握...

    indexing-mysql-table-into-solr:将mysql表索引到solr中

    yum install mysql mysql-server 现在,首先,我们将创建一个名为test的数据库,并在该数据库中创建一个表EMPLOYEE,在此表中,现在我们将first_name,last_name,年龄,性别,收入全部放入varchar中。 su - #s...

    集成分词器—–solr自带分词器和IK分词器对比

    环境信息 系统:CentOS Linux release 7.6.1810 ...将ik-analyzer-solr7-7.x.jar包上传到 $SOLR_INSTALL_HOME/server/solr-webapp/webapp/WEB-INF/lib目录下 在$SOLR_INSTALL_HOME/server/solr-webapp/webapp/

    sunspot-solr-demo:演示到太阳黑子 solr

    bundle install rake db : migrate rake sunspot : solr :start rails s 一旦您运行服务器以生成一些随机文章,请转到 其中 2 是要生成的文章数 其他重要命令 rake sunspot : solr :stop rake sunspot : ...

    solr安装和介绍

    ${solr.install.dir}/contrib" regex=".*\.jar$" /&gt; ``` 将 contrib 和 dist 两个目录拷贝到 Tomcat 同目录下。 - **datadir 标签**:指定 SolrCore 的索引文件目录。默认情况下,索引目录位于 SolrCore 目录下...

    solr4.8.1 for linux

    通常,我们可以使用 `yum install` 命令来安装 OpenJDK 或 Oracle JDK。 5. **解压Solr**:从提供的压缩包 `solr-4.8.1` 中解压,可以使用 `tar` 命令完成,例如:`tar -zxvf solr-4.8.1.tgz`。 6. **配置Solr**:...

    solr中文分词器

    ${solr.install.dir}/dist/" regex=".*analyzer-.*\.jar" /&gt; ``` 4. **重启Solr**:完成以上配置后,需要重启Solr服务,使新的配置生效。 5. **测试与优化**:通过Solr的Admin UI进行测试,观察分词效果。根据...

    php 扩展 -- solr-1.0.1

    使用命令`sudo apt-get install build-essential`(Ubuntu/Debian)或`sudo yum install gcc make autoconf`(CentOS/RHEL)。 5. **PHP开发库**:安装PHP开发头文件和相关库,例如`php-devel`,以便编译PHP扩展。...

    solr5的中文分词器ik-analyzer-solr5-master.zip

    1. **下载与安装**:首先,解压"ik-analyzer-solr5-master.zip",然后在命令行执行`mvn install`,将IK Analyzer添加到本地Maven仓库。 2. **配置Solr**:在Solr的`schema.xml`或`managed-schema`文件中,配置IK ...

    solr-redis:Solr Redis扩展

    快速开始使用Maven进行构建: mvn install 将库( solr-redis-*.jar )放在Solr lib目录( $SOLR_HOME/lib )中。 在solrconfig.xml配置查询解析器插件。 将以下内容添加到solrconfig.xml的“ config”部分: ...

    acts_as_solr_reloaded:具有新功能的ActsAsSolr

    script/plugin install git://github.com/brauliobo/acts_as_solr_reloaded.git 下载Solr rake solr:download 要求 Oracle或OpenJDK的Java Runtime Environment(JRE)6.0(或更高版本) 配置 请参阅config

    ikanalyzer-solr6.5.zip

    solr5+和ikanalyzer集成包主要内容包括:ext.dic、IKAnalyzer.cfg.xml和stopword.dic;ik-analyzer-solr5-5.x.jar 和 solr-analyzer-ik-5.1.0.jar

    windows 7 solr4.4安装进tomcat8中

    在Windows 7操作系统中安装Apache Solr 4.4并将其部署到Tomcat 8是一项重要的配置工作,这对于搭建基于Solr的全文检索系统至关重要。下面将详细解释这个过程涉及的关键知识点。 首先,我们需要安装Java Development...

Global site tag (gtag.js) - Google Analytics