From 0ea0fd34f6f9212cb1628637dae3d1a0ec88e56f Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Fri, 9 Aug 2024 14:05:10 -0600 Subject: [PATCH] remove outdated info and limited availability refs bump review date and contributors --- .../guides/solr-drupal/02-solr-drupal.md | 28 ++----------------- 1 file changed, 2 insertions(+), 26 deletions(-) diff --git a/source/content/guides/solr-drupal/02-solr-drupal.md b/source/content/guides/solr-drupal/02-solr-drupal.md index 18f1d7b8ec..e843864814 100644 --- a/source/content/guides/solr-drupal/02-solr-drupal.md +++ b/source/content/guides/solr-drupal/02-solr-drupal.md @@ -10,8 +10,8 @@ audience: [development] product: [search] integration: [--] tags: [solr, search, modules] -contributors: [carolynshannon, joan-ing] -reviewed: "2022-12-13" +contributors: [carolynshannon, joan-ing, jazzsequence] +reviewed: "2024-08-09" showtoc: true permalink: docs/guides/solr-drupal/solr-drupal editpath: solr-drupal/02-solr-drupal.md @@ -71,10 +71,6 @@ Ensure you review our documentation on [Git](/guides/git/git-config), [Composer] Each Pantheon environment (Dev, Test, Live, and Multidevs) has its own Solr server. Indexing and searching in one environment does not impact any other environment. -## Enable Access to Pantheon Search - -As a Limited Availability participant, your will need to manually enable access to Solr 8 for your site, for each environment in which you would like to create an index (Dev, Test, Live, and Multidevs). - ### Enable at the Site Level You must enable Pantheon Search at the site-level and add the Apache Solr Index Server. This can be done by using either the Terminus CLI or through the Site Dashboard. @@ -115,26 +111,6 @@ You must configure the `pantheon.yml` for the platform environment after you ena For more information, refer to the documentation on [Specifying a Solr version](/pantheon-yml#specify-a-solr-version) -#### Verify `pantheon.yml` is Configured Correctly - -After you specify the Solr 8 version in the Dev environment of your Drupal site, verify that the environment is configured to use Solr 8. The configured Solr environment will have several `PANTHEON_INDEX_*` variables, one of which will be `PANTHEON_INDEX_PORT`. If Solr 8 is configured correctly, the `PANTHEON_INDEX_PORT` value will be `443`. If any other value is displayed, your site is still configured to use Solr 3. - -1. Run the command below: - - ```bash{promptUser:user} - terminus drush SITE.ENV -- ev "phpinfo();" | grep PANTHEON_INDEX_PORT - ``` - -1. Confirm that the `PANTHEON_INDEX_PORT` value is `443`. The output from the command above should look similar to the example below. - - ```bash{promptUser:user} - terminus drush solr8-sandbox.dev -- ev "phpinfo();" | grep PANTHEON_INDEX_PORT - [warning] This environment is in read-only Git mode. If you want to make changes to the codebase of this site (e.g. updating modules or plugins), you will need to toggle into read/write SFTP mode first. - PANTHEON_INDEX_PORT => 443 - $_SERVER['PANTHEON_INDEX_PORT'] => 443 - $_ENV['PANTHEON_INDEX_PORT'] => 443 - ``` - ## Install and Enable the Search API Pantheon Module To install and enable the Search API Pantheon Module, access to Solr 8 must be enabled and `pantheon.yml` should be configured to use the Solr 8 version as described in the steps above.