From e6fbb2b83414f3cda470fb9bab6ec4415d83d059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B2=99=E5=93=88=E6=8B=89=E9=87=8C=E7=9A=84=E4=B8=80?= =?UTF-8?q?=E7=B2=92=E6=B2=99?= Date: Wed, 8 May 2024 15:00:37 +0800 Subject: [PATCH] Update basic-authentication-plugin.adoc (#2446) for the pwd encode format, there missed a ')', which is confusing. --- .../deployment-guide/pages/basic-authentication-plugin.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solr/solr-ref-guide/modules/deployment-guide/pages/basic-authentication-plugin.adoc b/solr/solr-ref-guide/modules/deployment-guide/pages/basic-authentication-plugin.adoc index bfc998021ab..e878e902459 100644 --- a/solr/solr-ref-guide/modules/deployment-guide/pages/basic-authentication-plugin.adoc +++ b/solr/solr-ref-guide/modules/deployment-guide/pages/basic-authentication-plugin.adoc @@ -29,7 +29,7 @@ This file and where to put it is described in detail in the section xref:authent If running in cloud mode, you can use the `bin/solr auth` command-line utility to enable security for a new installation, see: `bin/solr auth --help` for more details. For Basic authentication, `security.json` must have an `authentication` block which defines the class being used for authentication. -Usernames and passwords (Format: `base64(sha256(sha256(salt+password)) base64(salt)`) could be added when the file is created, or can be added later with the Authentication API, described below. +Usernames and passwords (Format: `base64(sha256(sha256(salt+password))) base64(salt)`) could be added when the file is created, or can be added later with the Authentication API, described below. An example `security.json` showing `authentication` and `authorization` blocks is shown below to show how authentication and authorization plugins can work together: