solr5 配置 与 创建core

标签: solr5 core | 发表时间:2015-12-31 09:49 | 作者:onlyor
出处:http://www.iteye.com

1. 准备安装包(保证tomat能正常启动)

   solr5.0

   tomcat-7.0.41

   JDK6

 

2 配置部署solr

  2.1 启动tomcat

  2.2 将solr/server/webapps/solr.war  拷贝到tomcat的webapps下。tomat会自动解压发布。

  2.3 停止tomcat,将solr.war删除。webapps下会有solr文件夹。

  2.4 在tomcat\webapps\solr下创建solr_home

  2.5 修改tomcat/webapps/solr/WEB-INF/web.xml,将 < env-entry > 节点取消注释。

  2.6 将solr\server\lib\ext中的所有jar包copy到tomcat/webapps的solr/WEB-INF/lib下

       将solr\server\resources下的log4j.properties放到solr/WEB-INF/classes/下,

       如果没有classes文件夹则新建一个。

现在启动tomcat,访问http://127.0.0.1:8080/solr你会看到solradmin的界面

 

3 创建core

  3.1 关闭tomcat

  3.2 将solr\dist中的solr-dataimporthandler、solr-dataimporthandler-extras的jar包

       copy到tomcat/webapps的solr/WEB-INF/lib下

  3.3 在tomcat\webapps\solr\solr_home下创建ins文件夹(名称与下图的instanceDir一致)

  3.4 在ins文件夹下创建data和conf文件夹

  3.5 将solr\example\example-DIH\solr\solr\conf所有文件和文件夹都copy到tomcat\webapps\solr\solr_home\ins\conf下

  3.6 启动tomcat,访问solr,创建core

 3.7 ADD CORE成功后如下图所示

 

      

 



已有 0 人发表留言,猛击->> 这里<<-参与讨论


ITeye推荐



相关 [solr5 core] 推荐:

solr5 配置 与 创建core

- - 数据库 - ITeye博客
准备安装包(保证tomat能正常启动).   2.1 启动tomcat.   2.2 将solr/server/webapps/solr.war  拷贝到tomcat的webapps下.   2.3 停止tomcat,将solr.war删除. webapps下会有solr文件夹.   2.4 在tomcat\webapps\solr下创建solr_home.

跟益达学Solr5之Facet一瞥

- - 嘿↗你的益达
      Facet属于Solr的高级查询部分,之所以在还没有讲解普通Query之前,就开始更新Facet查询,是因为看到很多小伙伴都在为Facet而困扰,其实根本原因还是对Facet不理解. Facet英文单词本意是方面的意思,但在solr中Facet一般翻译为维度的意思,举个例子,学生可以按班级来分类,可以按性别来分类,可以身高来分类,可以按年龄来分类,可以按考试分数来分类,可以按兴趣爱好分类,可以按出生地址分类等等,上面所说的班级,性别,身高,年龄,考试分数,兴趣爱好,出生地址等等这些都是把学生进行归类分组的一个个维度.

KISSY Core 预览版

- MArCoRQ - 岁月如歌
KISSY 是淘宝新一代前端 UI 类库,陆陆续续经过大半年的开发,终于完成了核心部分. KISSY 借鉴了 YUI3 的代码组织思想,尝试融合 jQuery/YUI2/ExtJS 等类库的优点. 目前才刚起步,下面是相关话题:. 请先看个 ppt, 或许能解答你的疑惑:前端_UI_类库_KISSY_赛马竞标书.pptx.

是否该用 Core Data?

- kezhuw - jjgod / blog
Core Data 是 Cocoa 里面一套非常受欢迎的框架,从 Mac OS X 10.4 提供以来,在 10.5 中引入了完善的 schema 迁移机制,再到 iPhone OS 3.0 时被引入 Cocoa Touch,这套完善的框架都被认为是管理大量结构化数据所首选的 Cocoa 框架,尤其是因为使用 Core Data 能大大减少需要手工编写的代码量,就使它更受开发者欢迎了.

Debugging .NET Core on Linux with LLDB | RayDBG

- -
The LLDB debugger is conceptually similar to the native Windows debugging tools in that it is a low level and command live driven debugger. Part of the reason the .NET Core team chose the LLDB debugger was for its extensibility points that allowed them to create the SOS plugin which can be used to debug .NET core applications.

dotnet core 编程规范

- - 林德熙
本文实际只是翻译 .NET Core foundational libraries 官方文档的编码风格. 在 .NET Core foundational libraries项目使用的编程规范默认就是 VisualStudio 默认样式. 花括号使用 Allman style 风格,所有的花括号在新的一行开始.

Analyzing a .NET Core Core Dump on Linux | All Your Base Are Belong To Us

- -
I thought this walkthrough might be useful if you find yourself in the same boat, because, to be quite honest, I didn’t find it trivial.. A lot of distros will have something preconfigured, but the simplest approach is to just put a file name in the /proc/sys/kernel/core_pattern file:.

Core i7-2700K:要提速 也要涨价

- Darth Noctis - cnBeta.COM
多年来,Intel处理器一直坚持着非常稳固的价格点,每每新品发布都在提升频率的同时保持价格不变,旧品则或降价或退市,但偶尔也会有例外,比如将在一个月后面世的Core i7-2700K.

Profiling a .NET Core Application on Linux | All Your Base Are Belong To Us

- -
In the same vein of  my previous post on analyzing core dumps of .NET Core applications on Linux, let’s take a look at what it takes to do some basic performance profiling.

.Net Core 全局性能诊断工具

- - IT瘾-dev
现在.NET Core 上线后,不可避免的会出现各种问题,如内存泄漏、CPU占用高、接口处理耗时较长等问题. 这个时候就需要快速准确的定位问题,并解决. 这时候就可以使用.NET Core 为开发人员提供了一系列功能强大的诊断工具. 接下来就详细了解下:.NET Core 全局诊断工具. dotnet-counters 是一个性能监视工具,用于初级运行状况监视和性能调查.