You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/current/v26.3/authentication.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -313,7 +313,7 @@ CockroachDB supports the [TLS 1.3 and TLS 1.2](https://wikipedia.org/wiki/Transp
313
313
314
314
By default, CockroachDB negotiates TLS 1.3 for client connections when supported by the client. If the client does not support TLS 1.3, the connection will fall back to TLS 1.2.
315
315
316
-
To restrict your cluster to only allow connections using specific cipher suites, use the [`--tls-cipher-suites`]({% link {{ page.version.version }}/cockroach-start.md %}#tls-cipher-suites) startup flag with the `cockroach start` command. This setting applies to all incoming SQL, RPC, and HTTP connections.
316
+
To restrict your cluster to only allow connections using specific cipher suites, use the [`--tls-cipher-suites`]({% link {{ page.version.version }}/cockroach-start.md %}#flags-tls-cipher-suites) startup flag with the `cockroach start` command. This setting applies to all incoming SQL, RPC, and HTTP connections.
317
317
318
318
319
319
The following cipher suites are enabled by default:
Copy file name to clipboardExpand all lines: src/current/v26.3/cockroach-start-single-node.md
+2-6Lines changed: 2 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ The `--store` flag supports the following fields. Note that commas are used to s
58
58
In-memory storage is not suitable for production deployments at this time.
59
59
{{site.data.alerts.end}}
60
60
61
-
{% include {{ page.version.version }}/reference/flags-table.md flags=single_node_cmd.flags.store %}
61
+
{% include {{ page.version.version }}/reference/fields-table.md fields=single_node_cmd.flags.store %}
62
62
63
63
### Logging
64
64
@@ -98,11 +98,7 @@ nodeID: 1
98
98
These details are also written to the `INFO` log in the `/logs` directory. You can retrieve them with a command like `grep 'node starting' node1/logs/cockroach.log -A 11`.
99
99
{{site.data.alerts.end}}
100
100
101
-
Field | Description
102
-
------|------------
103
-
{% for field in single_node_cmd.standard_output.fields -%}
104
-
`{{ field.field }}` | {{ field.description }}
105
-
{% endfor %}
101
+
{% include {{ page.version.version }}/reference/fields-table.md fields=single_node_cmd.standard_output.fields %}
Copy file name to clipboardExpand all lines: src/current/v26.3/cockroach-start.md
+5-9Lines changed: 5 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -166,7 +166,7 @@ For example, let's say that latency is 10ms from nodes in datacenter A to nodes
166
166
167
167
#### Storage engine
168
168
169
-
The `--storage-engine` flag is used to choose the storage engine used by the node. Note that this setting applies to all [stores](#store) on the node, including the [temp store](#temp-dir).
169
+
The `--storage-engine` flag is used to choose the storage engine used by the node. Note that this setting applies to all [stores](#store) on the node, including the [temp store](#flags-temp-dir).
170
170
171
171
As of v21.1 and later, CockroachDB always uses the [Pebble storage engine]({% link {{ page.version.version }}/architecture/storage-layer.md %}#pebble). As such, `pebble` is the default and only option for the `--storage-engine` flag.
172
172
@@ -190,7 +190,7 @@ In-memory storage is not suitable for production deployments at this time.
190
190
{% include {{ page.version.version }}/prod-deployment/prod-guidance-store-volume.md %}
191
191
{{site.data.alerts.end}}
192
192
193
-
{% include {{ page.version.version }}/reference/flags-table.md flags=start_cmd.flags.store %}
193
+
{% include {{ page.version.version }}/reference/fields-table.md fields=start_cmd.flags.store %}
194
194
195
195
#### Write Ahead Log (WAL) failover
196
196
@@ -204,7 +204,7 @@ For more detailed instructions showing how to use, test, and monitor WAL failove
204
204
205
205
To enable WAL failover, you must take one of the following actions:
206
206
207
-
- Pass [`--wal-failover=among-stores`](#flag-wal-failover) to `cockroach start`, or
207
+
- Pass [`--wal-failover=among-stores`](#flags-wal-failover) to `cockroach start`, or
208
208
- Set the environment variable `COCKROACH_WAL_FAILOVER=among-stores` before starting the node.
209
209
210
210
[Writing log files to local disk]({% link {{ page.version.version }}/configure-logs.md %}#output-to-files) using the default configuration can lead to cluster instability in the event of a [disk stall]({% link {{ page.version.version }}/cluster-setup-troubleshooting.md %}#disk-stalls). It's not enough to failover your WAL writes to another disk: you must also write your log files in such a way that the forward progress of your cluster is not stalled due to disk unavailability.
@@ -225,7 +225,7 @@ As an alternative to logging to local disks, you can configure [remote log sinks
225
225
226
226
To disable WAL failover, you must [restart the node]({% link {{ page.version.version }}/node-shutdown.md %}#stop-and-restart-a-node) and either:
227
227
228
-
- Pass the [`--wal-failover=disabled`](#flag-wal-failover) flag to `cockroach start`, or
228
+
- Pass the [`--wal-failover=disabled`](#flags-wal-failover) flag to `cockroach start`, or
229
229
- Set the environment variable `COCKROACH_WAL_FAILOVER=disabled` before restarting the node.
230
230
231
231
##### Monitor WAL failover
@@ -266,11 +266,7 @@ nodeID: 1
266
266
These details are also written to the `INFO` log in the `/logs` directory. You can retrieve them with a command like `grep 'node starting' node1/logs/cockroach.log -A 11`.
267
267
{{site.data.alerts.end}}
268
268
269
-
Field | Description
270
-
------|------------
271
-
{% for field in start_cmd.standard_output.fields -%}
272
-
`{{ field.field }}` | {{ field.description }}
273
-
{% endfor %}
269
+
{% include {{ page.version.version }}/reference/fields-table.md fields=start_cmd.standard_output.fields %}
Replace `{node_advertise_address}` and `{node_advertise_port}` with a node's [`--advertise-addr`]({% link {{ page.version.version }}/cockroach-start.md %}#flags-advert-addr) IP address or hostname and port.
137
+
Replace `{node_advertise_address}` and `{node_advertise_port}` with a node's [`--advertise-addr`]({% link {{ page.version.version }}/cockroach-start.md %}#flags-advertise-addr) IP address or hostname and port.
138
138
139
139
{% include {{ page.version.version }}/connect/cockroach-workload-parameters.md %} As a result, for the example in this tutorial, you will need:
0 commit comments