I am using solar application in multicore mode, and I am unable to post data(xml),when i am trying to post a data by command line(cmd windows) to solr then i get an error…
-> missing solr core name in path
so please give me detailed answer
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Make sure that the core name is in the path:
http://host:8983/solr/CORE/updateWhen using the post.jar in a multicore setup, you have to override the default url parameter with a url that contains the CORE name:
java -Durl=http://... -jar post.jarYou can type
java -jar post.jar -helpto get the list of parameters that can be overridden.