This post shows students and new users steps to install Apache Solr on Ubuntu Linux. Apache Solr is a fast, open-source search platform built on Apache Lucene and Java.
Solr uses with a REST-like API which allows storing document (indexing) via JSON, XML, CSV or binary over HTTP. You query data via HTTP GET and receive JSON, XML, CSV or binary results.
Solr also provides advanced full-text search capabilities, scalable, and responsive admin interface. When looking for an enterprise search platform that enables phrases, wildcards, joins, grouping at large scale, you might want to take a look at Solr.
Below we’ll show you how to download and install the latest version on Ubuntu and run your own enterprise search platform on your own Linux server.
How to download and install Apache Solr on Ubuntu Linux
As mentioned above, Apache Solr is a fast, open-source search platform built on Apache Lucene and Java.
In order to install Solr, you must first install Java. The open source Java should work great with Solr.
Run the commands below to install OpenJDK on Ubuntu Linux. This will install the current stable version of OpenJDK for Ubuntu Linux.
sudo apt update sudo apt install default-jdk
To check the version of Java installed, run the commands below:
java --version
That should output similar lines as shown below:
openjdk 11.0.15 2022-04-19 OpenJDK Runtime Environment (build 11.0.15+10-Ubuntu-0ubuntu0.20.04.1) OpenJDK 64-Bit Server VM (build 11.0.15+10-Ubuntu-0ubuntu0.20.04.1, mixed mode, sharing)
Once Java is installed, continue below to download Solr and install.
Now to Java is installed, run the commands below to download Solr version 9.0.
Visit Solr download page and see if there are other version available to install.
Next, extract the downloaded file using the tar command.
wget https://dlcdn.apache.org/solr/solr/9.0.0/solr-9.0.0.tgz tar xzf solr-9.0.0.tgz solr-9.0.0/bin/install_solr_service.sh --strip-components=2
When version 9.0 downloaded and extracted, run the commands below to install it.
sudo bash ./install_solr_service.sh solr-9.0.0.tgz
The installation process will create a user with the name solr on your system. A default port 8983 will be used for Solr as well.
Once Solr is installed, you can run the commands below to stop, start and check Solr service status.
sudo service solr stop sudo service solr start sudo service solr status
The status commands will output similar lines as shown below.
● solr.service - LSB: Controls Apache Solr as a Service Loaded: loaded (/etc/init.d/solr; generated) Active: active (exited) since Sat 2022-05-28 17:44:47 CDT; 5s ago Docs: man:systemd-sysv-generator(8) Process: 4947 ExecStart=/etc/init.d/solr start (code=exited, status=0/SUCCESS) May 28 17:44:35 ubuntu2004 systemd[1]: Starting LSB: Controls Apache Solr as a Service... May 28 17:44:35 ubuntu2004 su[4949]: (to solr) root on none May 28 17:44:35 ubuntu2004 su[4949]: pam_unix(su-l:session): session opened for user solr by (uid=0) May 28 17:44:47 ubuntu2004 systemd[1]: Started LSB: Controls Apache Solr as a Service.
Apache Solr stores data in a collection, which is a single logical index that uses a separate solrconfig.xml file with a single index schema.
You can create a new collection using Solr built-in utility or APIs. Below is how to create a new collection named testcol1.
sudo su - solr -c "/opt/solr/bin/solr create -c testcol1 -n data_driven_schema_configs"
After a successful created, you should see a message similar to the one below:
Created new core 'testcol1'
Restart Solr services after creating new collections.
By default, you can access Solr on the localhost machine only. If you want to provide external access, you will have to edit Solr config file and allow access from remote systems.
Run the commands below to open Solr config file.
sudo nano /etc/default/solr.in.sh
Then change the highlighted line to all zeros to allow external clients.
# Solr to accept connections on all network interfaces. SOLR_JETTY_HOST="0.0.0.0"
Save the file and exit.
Restart Solr after editing the file.
sudo service solr restart
If you have firewall enable on your Ubuntu server, you may have to run the commands below to allow traffic from remote systems.
sudo ufw allow proto tcp from 192.168.0.0/24 to any port 8983
Finally, open your browser and browse to the server name followed by port number 8983.
You should see Solr admin console.
That should do it!
Conclusion:
This post showed you how to install Apache Solr on Ubuntu Linux. If you find any error above or have something to add, please use the comment form below.