Hi, I tried to implement the security.json using SolrCloud in Solr 6.4.2.
However, after I upload the security.json to ZooKeeper, the Solr cannot access any function at all. It also does not prompt to enter a User Name and Password to login, as per what is expected. Why could this be the reason? Below is my security.json file, taken from the example in Solr. It does not work even when the blockUnknown is set to false. { "authentication":{ "blockUnknown": false, "class":"solr.BasicAuthPlugin", "credentials":{"solr":"IV0EHq1OnNrj6gvRCwvFwTrZ1+z1oBbnQdiVC3otuq0= Ndd7LKvVBAaZIF0QAVi1ekCfAJXr1GGfLtRUXhgrF8c="} }, "authorization":{ "class":"solr.RuleBasedAuthorizationPlugin", "permissions":[{"name":"security-edit", "role":"admin"}] "user-role":{"solr":"admin"} }} Regards, Edwin