docs-v2/content/v2.0/organizations/create-org.md

42 lines
1.1 KiB
Markdown
Raw Normal View History

---
title: Create an organization
seotitle: Create an organization in InfluxDB
description: Create an organization in InfluxDB using the InfluxDB UI or the influx CLI.
menu:
v2_0:
name: Create an organization
parent: Manage organizations
weight: 101
---
Use the InfluxDB user interface (UI) or the `influx` command line interface (CLI)
to create an organization.
2019-03-19 23:02:43 +00:00
{{% cloud-msg %}}
You cannot currently create additional organizations in {{< cloud-name >}}. Only the default organization is available.
{{% /cloud-msg %}}
2019-03-19 21:43:10 +00:00
## Create an organization in the InfluxDB UI
2019-04-10 18:06:10 +00:00
1. Click the **Influx** icon in the navigation bar.
2019-04-09 23:57:11 +00:00
{{< nav-icon "admin" >}}
2019-04-09 23:57:11 +00:00
2. Select **Create Organization**.
3. In the window that appears, enter a name for the organization and associated bucket and click **Create**.
## Create an organization using the influx CLI
Use the [`influx org create` command](/v2.0/reference/cli/influx/org/create)
to create a new organization. A new organization requires the following:
- A name for the organization
```sh
# Pattern
influx org create -n <org-name>
# Example
influx org create -n my-org
```