solr基础(1)——入门

一、参考

elasticsearch 学习系列目录——更新ing

Apache Solr 8.8 quick start

二、安装

下载地址 solr-8.8.2.zip

unzip solr-8.8.2.zip

2.1 运行实例

# (1)开始solr

./bin/solr start -e cloud

# (2)指定运行的节点数量,默认为2,直接 enter

how many Solr nodes would you like to run in your local cluster? (specify 1-4 nodes) [2]

# (3)指定节点1,节点2的端口,直接使用默认,enter

# (4)填写collection名称,techproducts,此处不使用默认的 gettingstarted

# (5)指定techproducts 的分片数量,默认是2,直接使用默认值

How many shards would you like to split techproducts into? [2]

# (6)指定每个主分片的副本分片数量,默认为2,直接使用默认值

How many replicas per shard would you like to create? [2]

# (7)选择配置文件,此处指定 sample_techproducts_configs, 而不是使用默认的_default

solr基础(1)——入门_第1张图片

solr基础(1)——入门_第2张图片

三、索引数据

你可能感兴趣的:(solr)