epugh commented on PR #4320:
URL: https://github.com/apache/solr/pull/4320#issuecomment-4478977881

   I did some testing on this branch on what commands connect direct to ZK, and 
the results where what I expected.
   
   ```
   docker run --name zookeeper --restart always -d -p 2181:2181 zookeeper 
   
   # fails
   bin/solr zk mkroot mychroot
   
   # succeeds
   bin/solr zk mkroot --zk-host localhost:2181 mychroot
   
   # succeeds
   bin/solr zk ls --zk-host localhost:2181 /
   
   # fails due to unknown option name
   bin/solr zk ls --solr-connection localhost:2181 /
   
   # succeeds
   bin/solr zk upconfig -z localhost:2181 -n mynewconfig -d 
./server/solr/configsets/sample_techproducts_configs
   
   # succeeds
   bin/solr zk downconfig -z localhost:2181 -n mynewconfig -d /tmp
   
   # succeeds
   bin/solr cluster -z localhost:2181 --property urlScheme --value https 
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to