-
Notifications
You must be signed in to change notification settings - Fork 56
Building Apache Solr
General Notes:
-
When following the steps below, please use a standard permission user unless otherwise specified.
-
A directory
/<source_root>/will be referred to in these instructions, this is a temporary writable directory anywhere you'd like to place it.
Apache Solr binaries are available and can be downloaded from here. To use these binaries, different Java flavors can be installed on mentioned distributions.
export SOURCE_ROOT=/<source_root>/-
RHEL (7.8, 7.9, 8.1, 8.2, 8.3)
-
With OpenJDK 11
sudo yum install -y git java-11-openjdk tar wget lsof
-
With AdoptOpenJDK 11
sudo yum install -y git tar wget lsof
- Download and install AdoptOpenJDK 11 (with HotSpot or OpenJ9) from here.
-
-
SLES (12 SP5, 15 SP1, 15 SP2)
-
With OpenJDK 11
sudo zypper install -y --auto-agree-with-licenses git java-11-openjdk tar wget gzip gawk lsof
-
With AdoptOpenJDK 11
sudo zypper install -y git tar wget gzip gawk lsof
- Download and install AdoptOpenJDK 11 (with HotSpot or OpenJ9) from here.
-
-
Ubuntu (18.04, 20.04, 20.10)
-
With OpenJDK 11
sudo apt-get update sudo apt-get -y install ant git tar wget lsof openjdk-11-jre
-
With AdoptOpenJDK 11
sudo apt-get update sudo apt-get install -y ant git tar wget lsof
- Download and install AdoptOpenJDK 11 (with HotSpot or OpenJ9) from here.
-
Note: At the time of creation of these build instructions, Apache Solr was verified with OpenJDK 11 (build 11.0.9+11-LTS) on RHEL,
OpenJDK 11 (build 11.0.9.1+1-Ubuntu-0ubuuntu1) on Ubuntu, OpenJDK 11 (build 11.0.9+11-suse-3.48.1) on SLES 15 SPx,
OpenJDK 11 (build 11.0.9+11-suse-3.15.1) on SLES 12 SP5, AdoptOpenJDK 11 with HotSpot (build 11.0.9.1+1)
and AdoptOpenJDK 11 with OpenJ9 (build 11.0.9+11).
-
Set JAVA_HOME and PATH
export JAVA_HOME=<Path to Java> export PATH=$JAVA_HOME/bin:$PATH
Extract Apache Solr binary tar to $SOURCE_ROOT and follow steps given below.
cd $SOURCE_ROOT/<Apache_Solr_binary_folder>/bin
sudo chmod a+x solr
./solr start
./solr create -c sampleThe./solr start command will start the Solr server on port 8983. The ./solr create -c sample command should create a core and output:
Created new core 'sample'
Access the Solr Admin Console at: http://HOST_IP:8983/solr/
Apache Solr Homepage - Details of Apache Solr can be found here.
The information provided in this article is accurate at the time of writing, but on-going development in the open-source projects involved may make the information incorrect or obsolete. Please open issue or contact us on IBM Z Community if you have any questions or feedback.