Skip to content

Apache Solr search engine integration for Drupal on DDEV (please consider ddev/ddev-solr first)

License

Notifications You must be signed in to change notification settings

ddev/ddev-drupal-solr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

add-on registry tests last commit release

DDEV Drupal Solr

What is the difference between this and ddev-solr

Please consider using ddev/ddev-solr, which runs Solr in the modern "Cloud" mode. This offers several advantages. If you are using Drupal, the biggest advantage is that you can update the Solr Configset from the UI or with a Drush command everytime you update search_api_solr.

The current addon runs in "classic standalone" mode. It is probably simpler at first to setup, but comes with the added maintainance steps for configsets. Most Solr hosting service providers run "Solr Cloud" as a backend.

Overview

Apache Solr is the blazing-fast, open source, multi-modal search platform built on the full-text, vector, and geospatial search capabilities of Apache Lucene™.

This add-on integrates Solr for Drupal 9+ into your DDEV project. It follows the Setting up Solr (single core) - the classic way recipe.

Installation on Drupal 9+

  1. ddev add-on get ddev/ddev-drupal-solr
    ddev restart
  2. You may need to install the relevant Drupal requirements:
    ddev composer require drush/drush drupal/search_api_solr
  3. Enable the search_api_solr module either using the web interface or
    ddev drush en -y search_api_solr
  4. Create a Search API server at admin/config/search/search-api -> "Add server"
  5. Create a server with the following settings
    • Set "Server name" to anything you want. Maybe ddev-solr-server.
    • Set "Backend" to Solr
    • Configure Solr backend
      • Set "Solr Connector" to Standard
      • Set "Solr host" to solr
      • Set "solr core" to dev
      • Under "Advanced server configuration" set the "solr.install.dir" to /opt/solr.
  6. ddev restart

Outdated Solr config files

If you get a message about Solr having outdated config files, you need to update the included Solr config files.

  1. Click "Get config.zip" on the server page
  2. Unzip the files, and put the config files into .ddev/solr/conf/
  3. Run ddev restart

Other frameworks

See the documentation in the doc folder

Usage

Command Description
ddev launch :8943 Open Solr Admin (HTTPS) in your browser (https://<project>.ddev.site:8943)
ddev launch :8983 Open Solr Admin (HTTP) in your browser (http://<project>.ddev.site:8983)
ddev describe View service status and used ports for Solr
ddev logs -s solr Check Solr logs

Explanation

This originates from the classic Drupal solr:8 image recipe used for a long time by Drupal users and compatible with search_api_solr.

Interacting with Apache Solr

  • The Solr Admin interface will be accessible at: https://<projectname>.ddev.site:8943/solr/ and http://<projectname>.ddev.site:8983/solr/. For example, if the project is named myproject the hostname will be: https://myproject.ddev.site:8943/solr/.
  • To access the Solr container from inside the web container use: http://solr:8983/solr/
  • A Solr core is automatically created by default with the name "dev"; it can be accessed (from inside the web container) at the URL: http://solr:8983/solr/dev or from the host at https://<projectname>.ddev.site:8943/solr/#/~cores/dev. You can obviously create other cores to meet your needs.

Alternate Core Name

If you want to use a core name other than the default "dev", add a .ddev/docker-compose.solr-env.yaml with these contents, using the core name you want to use:

services:
  solr:
    environment:
      - SOLR_CORENAME=somecorename
  1. Change SOLR_CORENAME environment variable in the environment: section.
  2. Change your Drupal configuration to use the new core.

You can delete the "dev" core from https://<projectname>.ddev.site:8943/solr/#/~cores/dev by clicking "Unload".

Multiple Solr Cores

If you would like to use more than one Solr core, add a .ddev/docker-compose.solr_extra.yaml to override some of the default configuration.

  1. Define a mount point for each core you require. Add new mount points for each core, for example:

    services:
      solr:
        volumes:
          - ./solr:/solr-conf
          - ./core2:/core2-conf
          - ./core3:/core3-conf
  2. Create the directories for your new cores' config, and copy the desired solr config in to it, eg:

    cp -R .ddev/solr .ddev/core2
    cp -R .ddev/solr .ddev/core3
    cp -R path/to/core2-config/* .ddev/core2/conf/
    cp -R path/to/core3-config/* .ddev/core3/conf/
  3. Set the entrypoint value to use precreate-core instead of solr-precreate and add the additional cores, along with a command to start solr afterwards:

    services:
      solr:
        entrypoint: 'bash -c "VERBOSE=yes docker-entrypoint.sh precreate-core solrconf /solr-conf ; precreate-core core2 /core2-conf ; precreate-core core3 /core3-conf  ; exec solr -f "'
  4. Your finished .ddev/docker-compose.solr_extra.yaml file should now look something like this:

    services:
      solr:
        volumes:
          - ./solr:/solr-conf
          - ./core2:/core2-conf
          - ./core3:/core3-conf
        entrypoint: 'bash -c "VERBOSE=yes docker-entrypoint.sh precreate-core solrconf /solr-conf ; precreate-core core2 /core2-conf ; precreate-core core3 /core3-conf  ; exec solr -f "'
  5. Finally, ddev restart to pick up the changes and create the new cores.

Caveats

  • This recipe won't work with versions of Solr before solr:8, and Acquia's hosting requires Solr 7. You'll want to see the contributed recipes for older versions of Solr.

Credits

Contributed by @rfay

Maintained by @mkalkbrenner, @bserem, and the DDEV team