Hello I've previously (SolR 9.1) been using this approach, inside own test docker image, that boils down to:
echo "clientPortAddress=0.0.0.0" >> server/solr/zoo.cfg ./bin/solr start -f -c This allows other containers to connect to the zookeeper and update/query/stream from the SolR during integration testing. How ever what I see now is, if I go to http://localhost:8983/solr/#/~cloud?view=zkstatus, is a message that says: Status: red Errors: * Failed talking to Zookeeper null:9983 ZK connection string: 0.0.0.0:9983 My question is: Is that expected (now)? Did I miss some configuration change, that allows to set the zookeeper uri to localhost:9983, and still start the embedded one? Is it no longer supported - i.e. run your own container with a zookeeper? Tedious to fix all the tests, but ok. Or is this actually a bug? Yours Bøgeskov