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
# All statements must be terminated by a semicolon.
66
66
# To exit: CTRL + D.
@@ -95,7 +95,7 @@ CockroachDB supports the PostgreSQL wire protocol, so you can use any available
95
95
96
96
For a list of recommended drivers that we've tested, see [Install Client Drivers](install-client-drivers.html). For some basic code samples, see [Build a Test App](build-a-test-app.html).
97
97
98
-
### 7. Monitor your cluster
98
+
### 7. Monitor the cluster
99
99
100
100
The CockroachDB Admin UI lets you monitor cluster-wide, node-level, and database-level metrics and events. To start up the Admin UI, point your browser to the URL in the `admin` field listed in the standard output of any node on startup, for example:
You can stop the nodes (and therefore the cluster) from any machine with the `cockroach` binary as follows:
116
+
117
+
~~~shell
118
+
$ cockroach quit --host=node1.example.com
119
+
$ cockroach quit --host=node2.example.com
120
+
$ cockroach quit --host=node3.example.com
121
+
~~~
122
+
123
+
For more details about the `cockroach quit` command, see [Stop a Node](stop-a-node.html).
124
+
113
125
## Deploy a Secure Cluster
114
126
115
127
### 1. Create security certificates
@@ -166,7 +178,7 @@ For more information, see [Configure Replication Zones](configure-replication-zo
166
178
167
179
### 6. Use the built-in SQL client
168
180
169
-
You can run the built-in SQL client from any machine with the `cockroach` binary, CA cert, client certificate, and client key. Make sure the machine you want to use has these files and then start the client:
181
+
You can run the built-in SQL client from any machine with the `cockroach` binary, the CA cert, and a client certificate and key. Make sure the machine you want to use has these files and then start the client:
@@ -204,7 +216,7 @@ CockroachDB supports the PostgreSQL wire protocol, so you can use any available
204
216
205
217
For a list of recommended drivers that we've tested, see [Install Client Drivers](install-client-drivers.html). For some basic code samples, see [Build a Test App](build-a-test-app.html).
206
218
207
-
### 8. Monitor your cluster
219
+
### 8. Monitor the cluster
208
220
209
221
The CockroachDB Admin UI lets you monitor cluster-wide, node-level, and database-level metrics and events. To access the Admin UI, from the address specified by the `--http-addr` flag in steps 2 and 3, point a browser to the URL in the `admin` field listed in the standard output on startup, for example:
{{site.data.alerts.callout_info}}In cases where you set <code>--http-addr</code> to <code>localhost</code> and need to access the Admin UI from a separate machine, you can use SSH to tunnel from the machine to a node.{{site.data.alerts.end}}
223
235
236
+
### 9. Stop the cluster
237
+
238
+
You can stop the nodes (and therefore the cluster) from any machine with the `cockroach` binary, the CA cert, and a client certificate and key. Make sure the machine you want to use has these files and then stop the nodes:
0 commit comments