You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bookkeeper.apache.org by ch...@apache.org on 2023/01/11 07:49:10 UTC

[bookkeeper] branch master updated: [docs] update parameter in manual deployment page (#3573)

This is an automated email from the ASF dual-hosted git repository.

chenhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git


The following commit(s) were added to refs/heads/master by this push:
     new 4fd5f814dd [docs] update parameter in manual deployment page (#3573)
4fd5f814dd is described below

commit 4fd5f814ddac4a1c6c11f31256a942871b00e3d0
Author: FeiFan Wang <zo...@163.com>
AuthorDate: Wed Jan 11 15:49:04 2023 +0800

    [docs] update parameter in manual deployment page (#3573)
    
    ### Motivation
    
    configuration 'zkServers' is deprecated, user only config this parameter may cause failure. So update manual deployment page.
---
 site3/website/docs/deployment/manual.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/site3/website/docs/deployment/manual.md b/site3/website/docs/deployment/manual.md
index b574b12456..88823ece7d 100644
--- a/site3/website/docs/deployment/manual.md
+++ b/site3/website/docs/deployment/manual.md
@@ -16,10 +16,10 @@ We won't provide a full guide to setting up a ZooKeeper cluster here. We recomme
 
 Once your ZooKeeper cluster is up and running, there is some metadata that needs to be written to ZooKeeper, so you need to modify the bookie's configuration to make sure that it points to the right ZooKeeper cluster.
 
-On each bookie host, you need to [download](../getting-started/installation#download) the BookKeeper package as a tarball. Once you've done that, you need to configure the bookie by setting values in the `bookkeeper-server/conf/bk_server.conf` config file. The one parameter that you will absolutely need to change is the `zkServers` parameter, which you will need to set to the ZooKeeper connection string for your ZooKeeper cluster. Here's an example:
+On each bookie host, you need to [download](../getting-started/installation#download) the BookKeeper package as a tarball. Once you've done that, you need to configure the bookie by setting values in the `bookkeeper-server/conf/bk_server.conf` config file. The one parameter that you will absolutely need to change is the `metadataServiceUri` parameter, which you will need to set to the ZooKeeper connection string for your ZooKeeper cluster. Here's an example:
 
 ```properties
-zkServers=100.0.0.1:2181,100.0.0.2:2181,100.0.0.3:2181
+metadataServiceUri=zk+hierarchical://100.0.0.1:2181;100.0.0.2:2181;100.0.0.3:2181/ledgers
 ```
 
 > A full listing of configurable parameters available in `bookkeeper-server/conf/bk_server.conf` can be found in the [Configuration](../reference/config) reference manual.