solr 5.3.1 源码 阅读 - 基础 启动服务

Solr流程整理 1 
基础


1. 版本信息
Solr 版本较多, 以下以solr 5.3.1 为基础。


2. 目标
跟踪的视角是,数据,进入系统、在系统中如何存储、查询等。


3. solr系统启动

一种是正常启动,如:bin/solr  start  -V  -f, 其中参数 start标识启动服务, -V 标识输出详细动作,-f 标识前台运行

solr 5.3.1 源码 阅读 - 基础 启动服务_第1张图片

 启动后,创建core, 输出的错误大致如下:
104448 ERROR (qtp2128824892-15) [   ] o.a.s.c.CoreContainer Error creating core [new_core]: Could not load conf for core new_core: Error loading solr config from /home/solr/solr-5.3.1/server/solr/new_core/conf/solrconfig.xml
org.apache.solr.common.SolrException: Could not load conf for core new_core: Error loading solr config from /home/solr/solr-5.3.1/server/solr/new_core/conf/solrconfig.xml
solr 5.3.1 源码 阅读 - 基础 启动服务_第2张图片

 
解决方法:
1). 创建目录 new_core
/home/solr/solr-5.3.1/server/solr/new_core
2). 复制conf目录
configsets/data_driven_schema_configs
另一种是bin/solr  start -e  cloud    启动SolrCloud 示例, 这时候不需要创建core,因为交互式过程中,会提示创建一个名为'gettingstarted'的collection


4. 停止solr服务
如: bin/solr stop  -all, 停止所有的solr服务



你可能感兴趣的:(Solr,源码分析,5.3.1)