Before describing my problem, I want to describe my architecture and what I planned.
I installed 6 Hybris servers on 6 virtual machines called hybris01-hybris06. All of them are grouped and can see each other. I followed the instructions below:
https://wiki.hybris.com/display/release5/SolrFacetSearch+-+Installation+Guide and made the following setup:
I went in hybris/bin/ext-commerce/solrfacetsearch/resources/solr/server/and configured solr.xml and conf / solrconfig.xml. In particular, I added the following lines:
<solrconfig>
<mode>standalone</mode>
</solrconfig>
<clusterconfig>
<aliveCheckInterval>5000</aliveCheckInterval>
<connectionTimeout>5000</connectionTimeout>
<readTimeout>5000</readTimeout>
<endpointURLs>
<endpointURL master="true">hybris05:8983/solr</endpointURL>
<endpointURL>hybris06:8983/solr</endpointURL>
</endpointURLs>
</clusterconfig>
and I also wrote this in local.properties:
solr.server.env=prod
solr.server.mode=standalone
solr.server.endpointURL=hybris05:8983/solr // and 06 on the other Server
But I see "using the system property solr.solr.home: / opt / hybris / config / solr / embedded"
Now I'm not sure that each Hybris instance uses either built-in or stand-alone.
How can I find out?
Greetings Fide