WPSolr logo
Search
Close this search box.

Table of contents :

How to (Easily) Configure Elasticsearch on WordPress

wpsolr-header-solr-elasticsearch-4

Table of contents :

One of the best ways of improving user experience on your WordPress websites is to have a speedy and accurate search. While the default search can be quite effective on websites with limited amounts of data, it’s speed can become problematic (slow) as traffic and data increases. This is why, in this case, you should replace your WordPress search with a high performance search engine. But where do you start? Elasticsearch is an easy choice, since it is probably the one with the best price to performance ratio.

 

What is Elasticsearch ?

While the default WordPress search (and many other search plugins such as Relevanssi or Ivory search) use simple SQL queries to find matching posts in the WP database, Elasticsearch is optimized for information retrieval tasks.

As you can see in the chart above, this search engine is a far more scalable solution when there is high traffic and amount of data (in this case, WPSolr is a search plugin that makes use of Elasticsearch).

So it is no surprise that you would want to equip your website with a Elasticsearch for little to no extra cost.

Integrate a locally installed Elasticsearch server into your WordPress

1. Install Elasticsearch

We are going to use docker containers to host the different applications. To install the docker engine, use the following link : https://docs.docker.com/engine/install/.

Also, don’t forget to install docker-compose.

Create the following “docker-compose.yml” file :

version: '3.9'

services:
  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:8.13.2
    environment:
      discovery.type: single-node
      xpack.security.enabled: "false"
    ports:
      - 9200:9200
      - 9300:9300

And start the container using :

docker-compose up -d

You can check if the the container was correctly created using :

docker ps

Using the downloaded certificate, you can now connect to the Elasticsearch service :

curl https://localhost:9200

If it works it should return something like the following :

{
  "name" : "3dce78b1c8b5",
  "cluster_name" : "docker-cluster",
  "cluster_uuid" : "630jd9bxR7692FQ3E7gB6w",
  "version" : {
    "number" : "8.13.2",
    "build_flavor" : "default",
    "build_type" : "docker",
    "build_hash" : "16cc90cd2d08a3147ce02b07e50894bc060a4cbf",
    "build_date" : "2024-04-05T14:45:26.420424304Z",
    "build_snapshot" : false,
    "lucene_version" : "9.10.0",
    "minimum_wire_compatibility_version" : "7.17.0",
    "minimum_index_compatibility_version" : "7.0.0"
  },
  "tagline" : "You Know, for Search"
}

Setup WordPress (Optional)

If you don’t already have an active WordPress server, you can set it up locally.

Simply edit the previously created “docker-compose.yml” file with the following modifications :

version: '3.9'

services:
  wp:
    image: wordpress:php8.2-apache
    ports:
      - 80:80
    environment:
      WORDPRESS_DB_HOST: db:3306
      WORDPRESS_DB_USER: wordpress
      WORDPRESS_DB_PASSWORD: wordpress
    networks:
      - backend-wpd
      - frontend-wpd
  db:
    image: mysql:5.7
    environment:
      MYSQL_ROOT_PASSWORD: somewordpress
      MYSQL_DATABASE: wordpress
      MYSQL_USER: wordpress
      MYSQL_PASSWORD: wordpress
    networks:
      - backend-wpd
  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:8.13.2
    environment:
      discovery.type: single-node
      xpack.security.enabled: "false"
    ports:
      - 9200:9200
      - 9300:9300
    networks:
      - frontend-wpd


networks:
  frontend-wpd:
  backend-wpd:

Make sure that the WordPress & Elasticsearch server are in the same network so they can communicate with eachother.

If this is a production configuration, you should use volumes or bind mounts to save the data on your host machine. This ensures that there will be no critical data loss if anything happened to the container.

2. Add locally hosted Elasticsearch to your WordPress using WPSolr Free

WPSolr is a WordPress search plugin that powers up WordPress search using fast, accurate and scalable search engines. This means it can integrate Elasticsearch into any WordPress wesbite.

Since this is a locally installed Elasticsearch server, you can use the free version : WPSolr Free.

You can search for WPSolr in the WordPress plugins catalogue.

Click on the install a,d activate button

Click on the install and activate buttons for the WPSolr plugin.

Open the WPSolr dashboard.

Once you have installed and activated the WPSolr Free plugin, you can configure it.

To do that you first need to open the WPSolr settings page.

Open the indexes page in WPSolr dashboard.

Create the Elasticsearch index

To add your WordPress data to your Elasticsearch server, you first need to create an index. You can do that directly from WPSolr.

This portion will teach you how to create your index on your locally installed Elasticsearch server.

Open the indexes tab in the WPSolr dashboard.

Create a new Elasticsearch index in the WPSolr dashboard.

Create a new index.

Set WPSolr port number

Create the index by doing the following :

  • Select Elasticsearch search engine.
  • Enter the name of the index that will be displayed in the WPSolr settings.
  • Set the name of the index in the Elasticsearch server.
  • Set the scheme as http.
  • Set the elasticsearch host :
    • if the WordPress server is a container in the same docker network as elasticsearch, you need to enter the name of the service (the one in the docker-compose.yml file). For this example, it should be “elasticsearch”.
    • if the WordPress is on a separate server than Elasticsearch, you need to enter the ip address or hostname of the Elasticsearch server.
  • Set the port of the Elasticsearch.

You can now save your index.

Index your data

Once you have created your index, you can click on “2. Define your search” tab.

 

WPSolr open data tab

Click on the “2.2 Data” tab.

WPSolr select data to index

Select the data types you want to index. You can do that by simply checking the boxes.

Open "Send your data"

Click on the “3. Send your data” tab.

WPSolr index the data

Check the boxes of the data you selected previously. You can then click on the “Index selected post types” button to index the data.

Configure your search

This section will focus on replacing the WordPress search with WPSolr search powered by your Elasticsearch server.

Open define your search tab

Click on the “2. Define your search” tab.

WPSolr select index to use

Select the index you created previously. In this example, “local_elasticsearch”.

WPSolr replace WordPress archives with your custom search

Select the archives to replace with WPSolr search. This means that the filtering sorting, etc… of content in the search pages and homepage will be handled by WPSolr and Elasticsearch.

Since you have selected “Search archive”, it should now be used whenever your use a search bar.

3. Add Facets and Ajax search to your WordPress

WPSolr Free can also add Ajax (live) search and facets powered by Elasticsearch to your WordPress websites.

Learn how to add ajax search using WPSolr.

Learn how to add facets using WPSolr.

Integrate Cloud Hosted Elasticsearch (Elastic.co) into your WordPress

1. Create a managed Elasticsearch deployment.

  1. Get a free trial.
  2. Log into Elastic Cloud.
  3. Click Create deployment.
  4. Give your deployment a name.
  5. Click Create deployment and download the password for the elastic user.

2. Add fully managed Elasticsearch to your WordPress using WPSolr Pro

Adding Elastic Cloud to your WordPress requires the pro tier of WPSolr. You can easily start a free trial here.

Once you have started your trial you will receive 2 critical items : your license key and your WPSolr Pro zip file.

You can upload the zip file and install WPSolr Pro from the “Add plugins” page :

Upoad the WPSolr zip file to WordPress

Once  you have installed WPSolr Pro, you can open the WPSolr settings :

Open the WPSolr Pro settings

To use WPSolr Pro, you need to activate the license :

WPSolr Pro : Activate the index

In the license pop-up window, simply enter the license key and click on the activation button :

WPSolr Pro : Activate the index

Then, in the WPSolr Pro settings, you can create your first index :

WPSolr Pro : set the ELastic data

You need to enter the following values :

  • Choose Elasticsearch as a search engine.
  • Choose Elastic as a hosting option.
  • Set the index name that will be displayed in the WPSolr settings.
  • Set the name of the index that will be created in the Elastic instance.
  • Set the endpoint URL. You can find it in the Elastic cloud dashboard : “Your deployement > Manage”.
  • Set the Elastic user name and password.

 

Once you have created your Elastic cloud index, the rest of the process is pretty much the same as with the locally installed Elasticsearch server. From then on, you can add search, live search and facets powered by Elasticsearch quite easily.

 

Conclusion

 

It is a good idea to integrate search engines like Elasticsearch and Apache Solr into WordPress to deliver a faster, more scalable and accurate search. You can do precisely that using WPSolr which can integrate a host of search engines into your WordPress and Woocommerce websites.

Related posts ... not powered by WPSOLR 😊