在Centos7下,直接用 bin/solr create -c collection1 创建名为 collection1 的 core,会提示 Error CREATEing SolrCore ‘…’ 的错误,正确的命令使用是:
# su - solr -c "/opt/solr/bin/solr create_core -c collection1"
Copying configuration to new core instance directory:
/var/solr/data/collection1
Creating new core 'collection1' using command:
http://localhost:8983/solr/admin/cores?action=CREATE&name=collection1&instanceDir=collection1
{
"responseHeader":{
"status":0,
"QTime":812},
"core":"collection1"}
删除已创建的 collection1,使用以下命令:
# su - solr -c "/opt/solr/bin/solr create_core -c collection1"