Skip to content

Commit c1be9c4

Browse files
committed
Revisions
1 parent 965a550 commit c1be9c4

8 files changed

+52
-54
lines changed

_includes/v2.0/prod-deployment/insecure-start-nodes.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ For each initial node of your cluster, complete the following steps:
4949
Flag | Description
5050
-----|------------
5151
`--insecure` | Indicates that the cluster is insecure, with no network encryption or authentication.
52-
`--advertise-host` | Specifies the IP address or hostname to advertise to other nodes. If it is a hostname, it must be resolvable from all nodes; if it is an IP address, it must be routable from all nodes.<br><br>In some networking scenarios, you may need to use this flag differently or in combination with the `--host` flag. For more details, see [Networking](recommended-production-settings.html#networking).
52+
`--advertise-host` | Specifies the IP address or hostname to tell other nodes to use. This value must route to an IP address the node is listening on (with `--host` unspecified, the node listens on all IP addresses).<br><br>In some networking scenarios, you may need to use `--advertise-host` and/or `--host` differently. For more details, see [Networking](recommended-production-settings.html#networking).
5353
`--join` | Identifies the address and port of 3-5 of the initial nodes of the cluster. These addresses should match the addresses that the target nodes are advertising.
5454
`--cache`<br>`--max-sql-memory` | Increases the node's cache and temporary SQL memory size to 25% of available system memory to improve read performance and increase capacity for in-memory SQL processing. For more details, see [Cache and SQL Memory Size](recommended-production-settings.html#cache-and-sql-memory-size).
5555
`--background` | Starts the node in the background so you gain control of the terminal to issue more commands.
@@ -108,7 +108,7 @@ For each initial node of your cluster, complete the following steps:
108108
$ chown cockroach /var/lib/cockroach
109109
~~~
110110
111-
7. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service):
111+
7. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/insecurecockroachdb.service) and save the file in the `/etc/systemd/system/` directory:
112112
113113
{% include copy-clipboard.html %}
114114
~~~ shell
@@ -122,13 +122,11 @@ For each initial node of your cluster, complete the following steps:
122122
{% include {{ page.version.version }}/prod-deployment/insecurecockroachdb.service %}
123123
~~~
124124
125-
Save the file in the `/etc/systemd/system/` directory
126-
127125
8. In the sample configuration template, specify values for the following flags:
128126
129127
Flag | Description
130128
-----|------------
131-
`--advertise-host` | Specifies the IP address or hostname to advertise to other nodes. If it is a hostname, it must be resolvable from all nodes; if it is an IP address, it must be routable from all nodes.<br><br>In some networking scenarios, you may need to use this flag differently or in combination with the `--host` flag. For more details, see [Networking](recommended-production-settings.html#networking).
129+
`--advertise-host` | Specifies the IP address or hostname to tell other nodes to use. This value must route to an IP address the node is listening on (with `--host` unspecified, the node listens on all IP addresses).<br><br>In some networking scenarios, you may need to use `--advertise-host` and/or `--host` differently. For more details, see [Networking](recommended-production-settings.html#networking).
132130
`--join` | Identifies the address and port of 3-5 of the initial nodes of the cluster. These addresses should match the addresses that the target nodes are advertising.
133131
134132
When deploying across multiple datacenters, or when there is otherwise high latency between nodes, it is recommended to set `--locality` as well. It is also required to use certain enterprise features. For more details, see [Locality](start-a-node.html#locality).

_includes/v2.0/prod-deployment/secure-start-nodes.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ For each initial node of your cluster, complete the following steps:
4949
Flag | Description
5050
-----|------------
5151
`--certs-dir` | Specifies the directory where you placed the `ca.crt` file and the `node.crt` and `node.key` files for the node.
52-
`--advertise-host` | Specifies the IP address or hostname to advertise to other nodes. If it is a hostname, it must be resolvable from all nodes; if it is an IP address, it must be routable from all nodes.<br><br>In some networking scenarios, you may need to use this flag differently or in combination with the `--host` flag. For more details, see [Networking](recommended-production-settings.html#networking).
52+
`--advertise-host` | Specifies the IP address or hostname to tell other nodes to use. This value must route to an IP address the node is listening on (with `--host` unspecified, the node listens on all IP addresses).<br><br>In some networking scenarios, you may need to use `--advertise-host` and/or `--host` differently. For more details, see [Networking](recommended-production-settings.html#networking).
5353
`--join` | Identifies the address and port of 3-5 of the initial nodes of the cluster. These addresses should match the addresses that the target nodes are advertising.
5454
`--cache`<br>`--max-sql-memory` | Increases the node's cache and temporary SQL memory size to 25% of available system memory to improve read performance and increase capacity for in-memory SQL processing. For more details, see [Cache and SQL Memory Size](recommended-production-settings.html#cache-and-sql-memory-size).
5555
`--background` | Starts the node in the background so you gain control of the terminal to issue more commands.
@@ -115,7 +115,7 @@ For each initial node of your cluster, complete the following steps:
115115
$ chown -R cockroach.cockroach /var/lib/cockroach
116116
~~~
117117
118-
8. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service):
118+
8. Download the [sample configuration template](https://raw.githubusercontent.com/cockroachdb/docs/master/_includes/{{ page.version.version }}/prod-deployment/securecockroachdb.service) and save the file in the `/etc/systemd/system/` directory:
119119
120120
{% include copy-clipboard.html %}
121121
~~~ shell
@@ -129,13 +129,11 @@ For each initial node of your cluster, complete the following steps:
129129
{% include {{ page.version.version }}/prod-deployment/securecockroachdb.service %}
130130
~~~
131131
132-
Save the file in the `/etc/systemd/system/` directory.
133-
134132
9. In the sample configuration template, specify values for the following flags:
135133
136134
Flag | Description
137135
-----|------------
138-
`--advertise-host` | Specifies the IP address or hostname to advertise to other nodes. If it is a hostname, it must be resolvable from all nodes; if it is an IP address, it must be routable from all nodes.<br><br>In some networking scenarios, you may need to use this flag differently or in combination with the `--host` flag. For more details, see [Networking](recommended-production-settings.html#networking).
136+
`--advertise-host` | Specifies the IP address or hostname to tell other nodes to use. This value must route to an IP address the node is listening on (with `--host` unspecified, the node listens on all IP addresses).<br><br>In some networking scenarios, you may need to use `--advertise-host` and/or `--host` differently. For more details, see [Networking](recommended-production-settings.html#networking).
139137
`--join` | Identifies the address and port of 3-5 of the initial nodes of the cluster. These addresses should match the addresses that the target nodes are advertising.
140138
141139
When deploying across multiple datacenters, or when there is otherwise high latency between nodes, it is recommended to set `--locality` as well. It is also required to use certain enterprise features. For more details, see [Locality](start-a-node.html#locality).

_includes/v2.1/prod-deployment/insecure-start-nodes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ After completing these steps, nodes will not yet be live. They will complete the
5151
Flag | Description
5252
-----|------------
5353
`--insecure` | Indicates that the cluster is insecure, with no network encryption or authentication.
54-
`--advertise-host` | Specifies the IP address or hostname to advertise to other nodes. If it is a hostname, it must be resolvable from all nodes; if it is an IP address, it must be routable from all nodes.<br><br>In some networking scenarios, you may need to use this flag differently or in combination with the `--host` flag. For more details, see [Networking](recommended-production-settings.html#networking).
54+
`--advertise-host` | Specifies the IP address or hostname to tell other nodes to use. This value must route to an IP address the node is listening on (with `--host` unspecified, the node listens on all IP addresses).<br><br>In some networking scenarios, you may need to use `--advertise-host` and/or `--host` differently. For more details, see [Networking](recommended-production-settings.html#networking).
5555
`--join` | Identifies the address and port of 3-5 of the initial nodes of the cluster. These addresses should match the addresses that the target nodes are advertising.
5656
`--cache`<br>`--max-sql-memory` | Increases the node's cache and temporary SQL memory size to 25% of available system memory to improve read performance and increase capacity for in-memory SQL processing. For more details, see [Cache and SQL Memory Size](recommended-production-settings.html#cache-and-sql-memory-size).
5757
`--background` | Starts the node in the background so you gain control of the terminal to issue more commands.
@@ -128,7 +128,7 @@ For each initial node of your cluster, complete the following steps:
128128
129129
Flag | Description
130130
-----|------------
131-
`--advertise-host` | Specifies the IP address or hostname to advertise to other nodes. If it is a hostname, it must be resolvable from all nodes; if it is an IP address, it must be routable from all nodes.<br><br>In some networking scenarios, you may need to use this flag differently or in combination with the `--host` flag. For more details, see [Networking](recommended-production-settings.html#networking).
131+
`--advertise-host` | Specifies the IP address or hostname to tell other nodes to use. This value must route to an IP address the node is listening on (with `--host` unspecified, the node listens on all IP addresses).<br><br>In some networking scenarios, you may need to use `--advertise-host` and/or `--host` differently. For more details, see [Networking](recommended-production-settings.html#networking).
132132
`--join` | Identifies the address and port of 3-5 of the initial nodes of the cluster. These addresses should match the addresses that the target nodes are advertising.
133133
134134
When deploying across multiple datacenters, or when there is otherwise high latency between nodes, it is recommended to set `--locality` as well. It is also required to use certain enterprise features. For more details, see [Locality](start-a-node.html#locality).

_includes/v2.1/prod-deployment/secure-start-nodes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ For each initial node of your cluster, complete the following steps:
4949
Flag | Description
5050
-----|------------
5151
`--certs-dir` | Specifies the directory where you placed the `ca.crt` file and the `node.crt` and `node.key` files for the node.
52-
`--advertise-host` | Specifies the IP address or hostname to advertise to other nodes. If it is a hostname, it must be resolvable from all nodes; if it is an IP address, it must be routable from all nodes.<br><br>In some networking scenarios, you may need to use this flag differently or in combination with the `--host` flag. For more details, see [Networking](recommended-production-settings.html#networking).
52+
`--advertise-host` | Specifies the IP address or hostname to tell other nodes to use. This value must route to an IP address the node is listening on (with `--host` unspecified, the node listens on all IP addresses).<br><br>In some networking scenarios, you may need to use `--advertise-host` and/or `--host` differently. For more details, see [Networking](recommended-production-settings.html#networking).
5353
`--join` | Identifies the address and port of 3-5 of the initial nodes of the cluster. These addresses should match the addresses that the target nodes are advertising.
5454
`--cache`<br>`--max-sql-memory` | Increases the node's cache and temporary SQL memory size to 25% of available system memory to improve read performance and increase capacity for in-memory SQL processing. For more details, see [Cache and SQL Memory Size](recommended-production-settings.html#cache-and-sql-memory-size).
5555
`--background` | Starts the node in the background so you gain control of the terminal to issue more commands.
@@ -133,7 +133,7 @@ For each initial node of your cluster, complete the following steps:
133133
134134
Flag | Description
135135
-----|------------
136-
`--advertise-host` | Specifies the IP address or hostname to advertise to other nodes. If it is a hostname, it must be resolvable from all nodes; if it is an IP address, it must be routable from all nodes.<br><br>In some networking scenarios, you may need to use this flag differently or in combination with the `--host` flag. For more details, see [Networking](recommended-production-settings.html#networking).
136+
`--advertise-host` | Specifies the IP address or hostname to tell other nodes to use. This value must route to an IP address the node is listening on (with `--host` unspecified, the node listens on all IP addresses).<br><br>In some networking scenarios, you may need to use `--advertise-host` and/or `--host` differently. For more details, see [Networking](recommended-production-settings.html#networking).
137137
`--join` | Identifies the address and port of 3-5 of the initial nodes of the cluster. These addresses should match the addresses that the target nodes are advertising.
138138
139139
When deploying across multiple datacenters, or when there is otherwise high latency between nodes, it is recommended to set `--locality` as well. It is also required to use certain enterprise features. For more details, see [Locality](start-a-node.html#locality).

0 commit comments

Comments
 (0)