How to import data from mysql to solr

后端 未结 3 1579
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-07 04:34

I am trying to do the full db import using below URL

    `127.0.0.1:8983/solr/dataimport?command=full-import`

I installed solr and trying t

3条回答
  •  爱一瞬间的悲伤
    2021-01-07 05:26

    In case the core you address is not your default core, your request is lacking the core's name in the URL. You should request should be like this

    127.0.0.1:8983/solr//dataimport?command=full-import

    There you need to replace the with the actual name of your core, as configured in your solr.xml.

提交回复
热议问题