No es posible recibir su consulta por este medio. Para que nos llegue 
correctamente debe usar la aplicación CAU: 

  http://cau.uca.es/


Agredeciendo su colaboración.

        Saludos

----------------------------------------------------------------------------
Aplicación CAU
http://cau.uca.es/

--- Begin Message --- 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


--- End Message ---

Reply via email to