Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion cloud-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,11 @@ title: Cloud Deployment
toc: false
---

Coming soon.
To deploy an insecure development or test cluster on Google Cloud Engine or AWS using [Terraform](https://www.terraform.io/), see the configuration files and instructions in the [`gce`](https://github.com/cockroachdb/cockroach/blob/master/cloud/gce) and [`aws`](https://github.com/cockroachdb/cockroach/blob/master/cloud/aws) directories of our main cockroach GitHub repository.

More cloud deployment docs coming soon.

## See Also

- [Manual Deployment](manual-deployment.html)
- [Start a Local Cluster](start-a-local-cluster.html)
8 changes: 7 additions & 1 deletion manual-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ toc: false

This page shows you how to manually deploy a multi-node CockroachDB cluster on multiple machines.

{{site.data.alerts.callout_info}} For deployment on AWS and other cloud providers, see <a href="cloud-deployment.html">Cloud Deployment</a>. For local testing and development, see <a href="start-a-local-cluster.html">Start a Local Cluster</a>.{{site.data.alerts.end}}
{{site.data.alerts.callout_info}} For testing and development, you can <a href="start-a-local-cluster.html">Start a Local Cluster</a> or <a href="cloud-deployment.html">Deploy on GCE or AWS using Terraform</a>. You can also <a href="http://uptimedba.github.io/cockroach-vb-single/cockroach-vb-single/home.html">Run CockroachDB inside a VirtualBox VM</a> (community-supported).{{site.data.alerts.end}}

<div id="toc"></div>

Expand Down Expand Up @@ -221,3 +221,9 @@ store[0]: path=cockroach-data
~~~

<img src="images/admin_ui.png" style="border:1px solid #eee;max-width:100%" />

## See Also

- [Cloud Deployment](cloud-deployment.html)
- [Start a Local Cluster](start-a-local-cluster.html)
- [Run CockroachDB in a VirtualBox VM](http://uptimedba.github.io/cockroach-vb-single/cockroach-vb-single/home.html) (community-supported)
4 changes: 3 additions & 1 deletion start-a-local-cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ toc: false
expand: true
---

Once you've [installed CockroachDB](install-cockroachdb.html), you can quickly start a single- or multi-node cluster locally with each node listening on a different port. For details about running CockroachDB on multiple machines or in the cloud, see <a href="manual-deployment.html">Manual Deployment</a> or <a href="cloud-deployment.html">Cloud Deployment</a>.
Once you've [installed CockroachDB](install-cockroachdb.html), you can quickly start a single- or multi-node cluster locally with each node listening on a different port.

{{site.data.alerts.callout_info}}To run CockroachDB on multiple machines or in the cloud, see <a href="manual-deployment.html">Manual Deployment</a> or <a href="cloud-deployment.html">Cloud Deployment</a>. To run CockroachDB inside a single VirtualBox virtual machine, see these <a href="http://uptimedba.github.io/cockroach-vb-single/cockroach-vb-single/home.html">community-supported docs</a>.{{site.data.alerts.end}}

1. From the directory with the `cockroach` binary, start your first node:

Expand Down