2019-01-23 17:51:58 +00:00
|
|
|
---
|
|
|
|
title: Create an organization
|
|
|
|
seotitle: Create an organization in InfluxDB
|
2019-01-23 19:30:19 +00:00
|
|
|
description: Create an organization in InfluxDB using the InfluxDB UI or the influx CLI.
|
2019-01-23 17:51:58 +00:00
|
|
|
menu:
|
|
|
|
v2_0:
|
|
|
|
name: Create an organization
|
|
|
|
parent: Manage organizations
|
2019-02-06 16:24:44 +00:00
|
|
|
weight: 1
|
2019-01-23 17:51:58 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
Use the InfluxDB user interface (UI) or the `influx` command line interface (CLI)
|
|
|
|
to create an organization.
|
|
|
|
|
|
|
|
## Create an organization in the InfluxDB UI
|
|
|
|
|
|
|
|
1. Click the **Organizations** tab in the navigation bar.
|
|
|
|
|
|
|
|
{{< img-hd src="/img/organizations-icon.png" title="Organizations icon" />}}
|
|
|
|
|
|
|
|
_Complete content coming soon_
|
|
|
|
|
|
|
|
## Create an organization using the influx CLI
|
|
|
|
|
2019-01-23 19:30:19 +00:00
|
|
|
Use the [`influx org create` command](/v2.0/reference/cli/influx/org/create)
|
2019-01-23 18:36:40 +00:00
|
|
|
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
|
|
|
|
```
|