有没有办法将用户名/密码参数添加到以下solr update命令?
...........jdk7x64\bin\java -jar -Durl=http://localhost:8983/solr/collection1/update post.jar test_data.xml
或者有没有其他方法将文件发布到受密码保护的Solr?
答案 0 :(得分:1)
你可以尝试下面的命令,希望这会有所帮助。
jdk7x64\bin\java -jar -Durl=http://username:password@localhost:8983/solr/collection1/update post.jar test_data.xml
在username:password
之前的网址中添加hostname
。
根据Solr Issue,可从 Solr 4.8 获取。