> ## Documentation Index
> Fetch the complete documentation index at: https://cockroachlabs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Manual Deployment

export const InternalLink = ({version, path = "", children, ...props}) => {
  let detectedVersion = version || "stable";
  if (typeof window !== 'undefined' && !version) {
    const match = window.location.pathname.match(/\/docs\/([^/]+)/);
    if (match) {
      detectedVersion = match[1];
    }
  }
  const normalizedPath = path.startsWith("/") ? path.slice(1) : path;
  return <a href={`/docs/${detectedVersion}/${normalizedPath}`} {...props}>
      {children}
    </a>;
};

Use the following guides to deploy CockroachDB manually on-premises or on popular cloud platforms:

* <InternalLink path="deploy-cockroachdb-on-premises">On-Premises</InternalLink>
* <InternalLink path="deploy-cockroachdb-on-aws">Amazon Web Services (AWS)</InternalLink>
* <InternalLink path="deploy-cockroachdb-on-digital-ocean">Digital Ocean</InternalLink>
* <InternalLink path="deploy-cockroachdb-on-google-cloud-platform">Google Cloud Platform (GCE)</InternalLink>
* <InternalLink path="deploy-cockroachdb-on-microsoft-azure">Microsoft Azure</InternalLink>

<Tip>
  To try CockroachDB Cloud instead of running CockroachDB yourself, refer to the <InternalLink version="cockroachcloud" path="quickstart">Cloud Quickstart</InternalLink>.
</Tip>

## See also

* <InternalLink path="recommended-production-settings">Production Checklist</InternalLink>
* <InternalLink path="kubernetes-overview">Orchestrated Deployment</InternalLink>
* <InternalLink path="monitoring-and-alerting">Monitoring and Alerting</InternalLink>
* <InternalLink path="start-a-local-cluster">Local Deployment</InternalLink>
