在CentOS下安装Solr5.3(5)

ERROR: Must specify the path to the Solr installation archive, such as solr-5.0.0.tgz
Usage: install_solr_service.sh path_to_solr_distribution_archive OPTIONS
  The first argument to the script must be a path to a Solr distribution archive, such as solr-5.0.0.tgz      (only .tgz or .zip are supported formats for the archive)
  Supported OPTIONS include:
    -d    Directory for live / writable Solr files, such as logs, pid files, and index data; defaults to /var/solr
    -i    Directory to extract the Solr installation archive; defaults to /opt/                The specified path must exist prior to using this script.
    -p    Port Solr should bind to; default is 8983
    -s    Service name; defaults to solr
    -u    User to own the Solr files and run the Solr process as; defaults to solr                This script will create the specified user account if it does not exist.
NOTE: Must be run as the root user

创建集合

在这个部分,我们创建一个简单的Solr集合。

Solr可以有多个集合,但在这个示例,我们只使用一个。使用如下命令,创建一个新的集合。我们以solr用户运行以避免任何权限错误。

# su - solr -c "/usr/local/solr/solr/bin/solr create -c gettingstarted -n data_driven_schema_configs"

在这个命令中,gettingstarted是集合的名字,-n指定配置集合。Solr默认提供了3个配置集合。这里我们使用的是schemaless,意思是可以提供任意名字的任意列,类型将会被猜测。

Setup new core instance directory:  /data/solr/data/gettingstarted
Creating new core 'gettingstarted' using command:  :8983/solr/admin/cores?action=CREATE&name=gettingstarted&instanceDir=gettingstarted
{    "responseHeader":{        "status":0,        "QTime":3247},      "core":"gettingstarted"}

你现在已经创建了集合,并可以开始添加数据。默认的架构只需要提供一列:id。没有其他默认列,只有动态列。

添加和查询文档

在这个部分,我们将浏览Solr Web界面,添加一些文档到集合中。

问你使用Web浏览器访问:8983/solr,Solr Web界面将会显示为:

在CentOS下安装Solr5.3

这个Web界面包含大量的有用信息,可以被用于调试在使用中产生的任何问题。

集合被划分为核,这就是为什么在Web界面中有大量的对核的参照。现在,gettingstarted只包含一个核,名为gettingstarted。在左手边,可以看到“Core Selector”下拉菜单,我们可以选择gettingstarted看到更多信息。

在CentOS下安装Solr5.3

在选择gettingstarted核之后,选择“Documents”。文档存储可被Solr搜索的真实数据。因为我们使用了一个无模式的配置,我们可以使用任何列。我使用如下的JSON示例添加了一个单一文档,通过拷贝以下到“Documents(s)”列:


    "number": 1,   
    "president": "George Washington",   
    "birth_year": 1732,   
    "death_year": 1799,   
    "took_office": "1789-04-30",   
    "left_office": "1797-03-04",   
    "party": "No Party"   
}

点击“Submit document”添加文档到索引。过一会,你会看到如下信息:

添加文档后的输出:

Status: success 
Response:   
{   
  "responseHeader": {   
    "status": 0,   
    "QTime": 290   
  }   
}

你可以使用一个类似的或完全不同的结构添加更多文档,但你也可以只使用一个文档继续。

现在,选择左边的“Query”去查询我们刚刚添加的文档。保持屏幕中的默认值,在点击“Execute Query”之后,你最多看到10个文档,依赖于你添加了多少:

查询输出

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/55b8a542b8be86845d8a9b5951006eab.html