diff options
author | michaelbirnstiehl <michael.birnstiehl@sonarsource.com> | 2020-10-30 14:38:06 -0500 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-11-05 20:06:22 +0000 |
commit | 78897f045f5db2e6ccbecf7bb65f342423854246 (patch) | |
tree | a4ab93e8d16baddf7e756036e77199b764cb4181 /server/sonar-docs/src | |
parent | 8b37c35882ba4c3bf9a92dc849b1f3eacb773211 (diff) | |
download | sonarqube-78897f045f5db2e6ccbecf7bb65f342423854246.tar.gz sonarqube-78897f045f5db2e6ccbecf7bb65f342423854246.zip |
SONAR-13976 update ports description and raise security awareness for ES upgrade
Diffstat (limited to 'server/sonar-docs/src')
-rw-r--r-- | server/sonar-docs/src/pages/setup/operate-cluster.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/sonar-docs/src/pages/setup/operate-cluster.md b/server/sonar-docs/src/pages/setup/operate-cluster.md index f13fe1fe46e..d5c9aa5518d 100644 --- a/server/sonar-docs/src/pages/setup/operate-cluster.md +++ b/server/sonar-docs/src/pages/setup/operate-cluster.md @@ -49,10 +49,11 @@ To add an Application Node: ``` ... sonar.cluster.enabled=true - sonar.cluster.hosts=ip1,ip2,ip6 - sonar.cluster.search.hosts=ip3,ip4,ip5 - sonar.cluster.node.host=ip6 sonar.cluster.node.type=application + sonar.cluster.node.host=ip6 + sonar.cluster.node.port=9003 + sonar.cluster.hosts=ip1,ip2,ip6 + sonar.cluster.search.hosts=ip3:9001,ip4:9001,ip5:9001 sonar.auth.jwtBase64Hs256Secret=YOURGENERATEDSECRET ... ``` @@ -91,7 +92,6 @@ When the [Project Move](/instance-administration/project-move/) feature is used ## Configuration details There are three TCP networks to configure: ->>>>>>> c612aa18893... SONAR-13974 Add upgrade notes for new ES configuration - the network of application nodes: relying on Hazelcast, configured with the `sonar.cluster.node.host` and `sonar.cluster.node.port` properties - the network of search nodes: used by Elasticsearch, configured with the `sonar.cluster.node.search.host` and `sonar.cluster.node.search.port` properties |