I wasn’t familiar with SolrCloud when I started working with this. When I started to learn it and working directly with it - I had done so many mistakes. Even setting up SolrCloud for production was a hassle for me (I’m a slow learner). But overtime, I got a hang of it and I think writing an up-to-date guide to set up SolrCloud on production server is a good idea.
The official documentation is amazing enough and you should read it. This post is very straight forward. If you want any explanation and want to know/learn more, please consult official documentation.
Let’s get started.
(I’m writing this guide with the experience of Linux servers)
To easily go to the installation directory, I put these on .bashrc
:
|
|
Note that, this
solr_home
andSOLR_HOME
variable isn’t same.
Zookeeper
To bring the SolrCloud into production, we need external zookeeper (not the embedded one) server to manage our configuration and coordination centrally. We’re going to work with 3 servers. We will install zookeeper and Apache Solr into all servers with same configuration.
First, let’s configure our Apache Zookeeper. Install desired Java version according to the official documentation. At the time of writing, the latest Zookeeper and Solr - both needs Java 11.
|
|
Download the latest stable version from the official website. Notice that we don’t want the source (src) bundle, we need the binary (bin) version.
Installation and configuration
It’s not recommended to work with them while on root. But I’m going to work as a root user. My installation directory will be under /opt
.
|
|
We need to create a configuration file for zookeeper under $zookeepr_home/conf/
. The file name will be zoo.cfg
:
|
|
We will create a zookeeper environment file in the same place of zoo.cfg
, which is under $zookeeper_home/conf
. The file name will be zookeeper-env.sh
:
|
|
Create directories defined on the configuration:
|
|
Create a myid
text file under /var/lib/zookeeper/data
directory. Put the server id in that file with a single line. In case of server 2, the file will contain: 2
|
|
Now you can start zookeeper whenever you want but it need to be started before Solr.
|
|
Apache SolrCloud
Download latest Solr (bin version) on the server, move file to the /opt
and extract it.
|
|
Install it under /opt
.
|
|
Edit bin/solr.in.sh
for some configuration. We can also set this system wide by creating a file under /etc/default
.
|
|
Create directories defined in the configuration:
|
|
And it’s done.
You have to configure all servers like this.
Start SolrCloud by using the script:
|
|
To get help:
|
|
I hope you are able to get the SolrCloud running without any errors.
Use bin/solr
script to interact with Solr and Zookeeper. To know more, use official documentation.
To create a collection:
|
|
To delete a collection:
|
|
That’s all. I will try to update this post from time to time. I’m also planning to include some useful commands later.
Hope, things are working.
Happy searching!