This is an automated email from the ASF dual-hosted git repository.
epugh pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/branch_9x by this push:
new b21968fe6b3 Update enabling-ssl.adoc - fix minor typo in example
(#3175)
b21968fe6b3 is described below
commit b21968fe6b355bf2653d35b720794b23db6ef57c
Author: Kordishal <[email protected]>
AuthorDate: Sat Feb 15 23:22:23 2025 +0100
Update enabling-ssl.adoc - fix minor typo in example (#3175)
* urlSchema -> urlScheme
* add cluster command to solr.cmd example.
---
solr/solr-ref-guide/modules/deployment-guide/pages/enabling-ssl.adoc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/solr/solr-ref-guide/modules/deployment-guide/pages/enabling-ssl.adoc
b/solr/solr-ref-guide/modules/deployment-guide/pages/enabling-ssl.adoc
index 55aa2bde610..10a700e74ce 100644
--- a/solr/solr-ref-guide/modules/deployment-guide/pages/enabling-ssl.adoc
+++ b/solr/solr-ref-guide/modules/deployment-guide/pages/enabling-ssl.adoc
@@ -236,7 +236,7 @@ The examples below use the `bin/solr` tool that comes with
Solr to do this.
====
[source,terminal]
----
-$ bin/solr cluster --property urlSchema --value https -z
server1:2181,server2:2181,server3:2181
+$ bin/solr cluster --property urlScheme --value https --zk-host
server1:2181,server2:2181,server3:2181
----
====
@@ -245,7 +245,7 @@ Windows::
====
[source,powershell]
----
-C:\> bin/solr.cmd --property urlSchema --value https -z
server1:2181,server2:2181,server3:2181
+C:\> bin/solr.cmd cluster --property urlScheme --value https --zk-host
server1:2181,server2:2181,server3:2181
----
====
======