Details
Description
This is quite easy to reproduce.
wget https://archive.apache.org/dist/lucene/solr/6.6.0/solr-6.6.0.tgz
tar xvf solr-6.6.0.tgz
cd solr-6.6.0
Enable jmx reporting by editing the server/solr/solr.xml and adding the following under the "<solr>" tag:
<metrics> <reporter id="jmx" class="org.apache.solr.metrics.reporters.SolrJmxReporter" /> </metrics>
Start solr with:
./bin/solr start -e cloud -noprompt
Open jconsole and inspect mbeans for solr nodes running on port 8983 and 7574. You'll find that all mbeans (node, jvm, jetty, solr) are present for the solr on port 8983 but completely absent for the solr node running on port 7574.
Same behavior is on 6.6.2 and 6.6.6. However, Solr 7.x and 8.x seem to be fine.