diff options
author | birman111 <birman111@yandex-team.ru> | 2022-06-26 21:27:53 +0300 |
---|---|---|
committer | birman111 <birman111@yandex-team.ru> | 2022-06-26 21:27:53 +0300 |
commit | 861cb8c2de12a8db63522c5cbe6aa63f42e9849f (patch) | |
tree | c613dd35805ae89c2c1d4ecac85ea33b8552dd0e | |
parent | 2aa42e85e1804faf223ae811d7feb8c4cdb61fe9 (diff) | |
download | ydb-861cb8c2de12a8db63522c5cbe6aa63f42e9849f.tar.gz |
fix: anchor syntax
ref:c5532965f3786648ba5f5fe3f3b21cddce66a31c
-rw-r--r-- | ydb/docs/en/core/deploy/manual/deploy-ydb-on-premises.md | 20 |
1 files changed, 10 insertions, 10 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 43d68f9407..b350719fa5 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 @@ -1,10 +1,10 @@ -## Deploy YDB On-Premises {# deploy-on-premise} +# Deploy YDB On-Premises This document describes how to deploy a multi-tenant YDB cluster on multiple servers. -## Before you start {# before-start} +## Before you start {#before-start} -### Prerequisites {# requirements} +### Prerequisites {#requirements} Make sure you have SSH access to all servers. This is necessary to install artifacts and run the YDB binary file. Your network configuration must allow TCP connections on the following ports (by default): @@ -22,7 +22,7 @@ Select the servers and disks to be used for data storage: Run each static node on a separate server. -## Create a system user and a group to run {{ ydb-short-name }} under {# create-user} +## Create a system user and a group to run {{ ydb-short-name }} under {#create-user} On each server where YDB will be running, execute: @@ -37,7 +37,7 @@ To make sure the {{ ydb-short-name }} server has access to block store disks to sudo usermod -aG disk ydb ``` -## Prepare and format disks on each server {# prepare-disks} +## Prepare and format disks on each server {#prepare-disks} {% note warning %} @@ -148,7 +148,7 @@ Prepare the configuration files: {% endlist %} -## Start static nodes {# start-storage} +## Start static nodes {#start-storage} {% list tabs %} @@ -201,7 +201,7 @@ Prepare the configuration files: {% endlist %} -## Initialize a cluster {# initialize-cluster} +## Initialize a cluster {#initialize-cluster} On one of the cluster nodes, run the command: @@ -211,7 +211,7 @@ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/ydb/lib /opt/ydb/bin/ydbd admin blobstorag The command execution code should be null. -## Creating the first database {# create-fist-db} +## Creating the first database {#create-fist-db} To work with tables, you need to create at least one database and run a process serving this database (a dynamic node). @@ -219,7 +219,7 @@ To work with tables, you need to create at least one database and run a process LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/ydb/lib /opt/ydb/bin/ydbd admin database /Root/testdb create ssd:1 ``` -## Start the DB dynamic node {# start-dynnode} +## Start the DB dynamic node {#start-dynnode} {% list tabs %} @@ -278,7 +278,7 @@ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/ydb/lib /opt/ydb/bin/ydbd admin database / {% endlist %} -## Test the created database {# try-first-db} +## Test the created database {#try-first-db} 1. Install the YDB CLI as described in [Installing the YDB CLI](../../reference/ydb-cli/install.md) 2. Create a `test_table`: |