diff options
author | Sergey Ierusalimov <wintchester@gmail.com> | 2022-06-01 05:07:59 +0300 |
---|---|---|
committer | Sergey Ierusalimov <wintchester@gmail.com> | 2022-06-01 05:07:59 +0300 |
commit | 80838e3253cd3124145366e64f25f77fc00fd477 (patch) | |
tree | 960fd255ab4ef7a13d6926a325adee13274f49b8 | |
parent | 1a64e0cb419fca1c8761181b2f3f7013fb6a303e (diff) | |
download | ydb-80838e3253cd3124145366e64f25f77fc00fd477.tar.gz |
fix empty adresses for node-broker
ref:5e3b34f26bfbf49714598365a7df2a9b46b6a79a
-rw-r--r-- | ydb/docs/en/core/deploy/manual/deploy-ydb-on-premises.md | 2 | ||||
-rw-r--r-- | ydb/docs/ru/core/deploy/manual/deploy-ydb-on-premises.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ydb/docs/en/core/deploy/manual/deploy-ydb-on-premises.md b/ydb/docs/en/core/deploy/manual/deploy-ydb-on-premises.md index 65614d5b29..ee6be54119 100644 --- a/ydb/docs/en/core/deploy/manual/deploy-ydb-on-premises.md +++ b/ydb/docs/en/core/deploy/manual/deploy-ydb-on-premises.md @@ -232,7 +232,7 @@ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/ydb/lib ; /opt/ydb/bin/ydbd admin database cd /opt/ydb export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/ydb/lib /opt/ydbd/bin/ydbd server --grpc-port 2136 --ic-port 19002 --mon-port 8766 --yaml-config /opt/ydb/cfg/config.yaml \ - --tenant /Root/testdb --node-broker --node-broker --node-broker + --tenant /Root/testdb --node-broker node1.ydb.tech:2135 --node-broker node2.ydb.tech:2135 --node-broker node3.ydb.tech:2135 ``` Run additional dynamic nodes on other servers to ensure database availability. diff --git a/ydb/docs/ru/core/deploy/manual/deploy-ydb-on-premises.md b/ydb/docs/ru/core/deploy/manual/deploy-ydb-on-premises.md index 47838faf2a..803609f98e 100644 --- a/ydb/docs/ru/core/deploy/manual/deploy-ydb-on-premises.md +++ b/ydb/docs/ru/core/deploy/manual/deploy-ydb-on-premises.md @@ -214,7 +214,7 @@ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/ydb/lib /opt/ydb/bin/ydbd admin database / cd /opt/ydb export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/ydb/lib /opt/ydbd/bin/ydbd server --grpc-port 2136 --ic-port 19002 --mon-port 8766 --yaml-config /opt/ydb/cfg/config.yaml \ - --tenant /Root/testdb --node-broker --node-broker --node-broker + --tenant /Root/testdb --node-broker node1.ydb.tech:2135 --node-broker node2.ydb.tech:2135 --node-broker node3.ydb.tech:2135 ``` Запустите дополнительные динноды на других серверах для обеспечения доступности базы данных. |