I have found a video that does a really great job of explaining how to set up 
Zookeeper and multiple Solr nodes on a Windows machine.
A lot of the video is about Microsoft Azure, but it has a lot of great Solr 
cloud stuff too . Start watching at the 10:30 timestamp.


https://www.youtube.com/watch?v=LkZ_nJ9s7fQ


-----Original Message-----
From: Ufuk YILMAZ <uyil...@vivaldi.net.INVALID> 
Sent: Thursday, April 14, 2022 7:01 AM
To: users@solr.apache.org
Subject: [Non-DoD Source] Re: Looking for online tutorials setting up SolrCloud 
replication with Solr 8.11.1

I'm using Docker with bitnami solr and official zookeeper images. 
Starting up 3 zookeepers, pointing solr to them and starting solr instances was 
very easy this way. In fact I don't know how to start a standalone solr 
instance.

A small docker-compose example:

version: '2'
services:

   zoo-1:
     image: zookeeper:3.4
     hostname: zoo-1
     ports:
       - 2181:2181
     environment:
       ZOO_MY_ID: 1
       ZOO_SERVERS: server.1=0.0.0.0:2888:3888
     restart: unless-stopped
     networks:
       - net

   solr-1:
     image: solr:8.4-slim
     hostname: solr-1
     container_name: solr-1
     depends_on:
       - zoo-1
     ports:
       - "8983:8983"
     environment:
       ZK_HOST: "zoo-1:2181"
       SOLR_HOST: "solr-1"
       SOLR_HEAP: "1g"
     restart: unless-stopped
     networks:
       - net

networks:
   net:

On 2022-04-13 22:51, David Hastings wrote:
> I think this would be very beneficial, especially with a step by step 
> on getting all three zookeeps up and running for a quorum, honestly 
> this has been one of my major hold backs form implementing cloud, when 
> the simplicity of a standalone server and a couple hundred $ of ssd's 
> and memory make up for any performance, plus I never needed NRT
> 
> On Wed, Apr 13, 2022 at 3:48 PM Heller, George A III CTR (USA) 
> <george.a.heller2....@mail.mil.invalid> wrote:
> 
>> I have been looking online tutorials for setting solrCloud with Solr 
>> 8.11.1.
>> 
>> 
>> 
>> I have found the Apache tutorial using the batch file “solr –e cloud”.
>> 
>> 
>> 
>> 
>> 
>> I can’t finding any tutorial setting it up without the batch file. 
>> Does
>> anyone know where I can find a tutorial that does not use the batch 
>> file or that the only way to set up SolrCloud?
>> 
>> 
>> 
>> I want to set up firstly two solr instances on the same server, then 
>> move them to the servers in our failover cluster.
>> 
>> 
>> 
>> Thanks,
>> 
>> George
>> 

Attachment: smime.p7s
Description: S/MIME cryptographic signature

Reply via email to