2019-01-23 17:51:58 +00:00
|
|
|
---
|
|
|
|
title: Add a member
|
|
|
|
seotitle: Add a member to an organization in InfluxDB
|
2019-01-23 19:05:57 +00:00
|
|
|
description: Add a member to an organization.
|
2019-01-23 17:51:58 +00:00
|
|
|
menu:
|
|
|
|
v2_0:
|
|
|
|
name: Add a member
|
|
|
|
parent: Manage members
|
2019-02-06 17:48:09 +00:00
|
|
|
weight: 201
|
2019-01-23 17:51:58 +00:00
|
|
|
---
|
|
|
|
|
2019-11-19 19:07:26 +00:00
|
|
|
Use the `influx` command line interface (CLI) to add a member to an organization.
|
2019-01-23 17:51:58 +00:00
|
|
|
|
2019-11-19 19:07:26 +00:00
|
|
|
{{% cloud-msg %}}
|
|
|
|
Adding members is currently unavailable in {{< cloud-name >}}.
|
|
|
|
{{% /cloud-msg %}}
|
|
|
|
|
|
|
|
<!-- ## Add a member to an organization in the InfluxDB UI
|
2019-01-23 17:51:58 +00:00
|
|
|
|
2019-04-09 21:44:09 +00:00
|
|
|
1. Click the **Settings** tab in the navigation bar.
|
2019-01-23 17:51:58 +00:00
|
|
|
|
2019-04-09 21:44:09 +00:00
|
|
|
{{< nav-icon "settings" >}}
|
2019-01-23 17:51:58 +00:00
|
|
|
|
|
|
|
2. Click on the name of an organization, then select the **Members** tab.
|
|
|
|
|
2019-11-19 19:07:26 +00:00
|
|
|
_Complete content coming soon_ -->
|
2019-01-23 17:51:58 +00:00
|
|
|
|
|
|
|
## Add a member to an organization using the influx CLI
|
|
|
|
|
2019-11-19 19:07:26 +00:00
|
|
|
1. Get a list of users and their IDs by running the following:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
influx user find
|
|
|
|
```
|
|
|
|
|
2019-11-20 22:00:27 +00:00
|
|
|
2. To add a user to an organization, run the following command:
|
2019-11-19 19:07:26 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
influx org members add -n <org-name> -o <user-ID>
|
|
|
|
```
|
2019-01-23 18:36:40 +00:00
|
|
|
|
2019-11-19 19:07:26 +00:00
|
|
|
For more information, see the [`influx org members add` command](/v2.0/reference/cli/influx/org/members/add).
|