Merge branch 'master' into v2-layout

pull/40/head
Scott Anderson 2019-01-25 10:07:23 -07:00
commit ac84ef40d8
4 changed files with 41 additions and 17 deletions

View File

@ -25,13 +25,25 @@ Download InfluxDB v2.0 alpha for macOS.
<a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb_2.0.0-alpha.1_darwin_amd64.tar.gz" download>InfluxDB v2.0 alpha (macOS)</a>
### Place the executables in your $PATH
Unzip the download package and place the `influx` and `influxd` executables in your system `$PATH`.
Unpackage the downloaded archive and place the `influx` and `influxd` executables in your system `$PATH`.
_**Note:** The following commands are examples. Adjust the file paths to your own needs._
```sh
# Example
cp ~/Downloads/influxdb_2.0.0-alpha.1_darwin_amd64/{influx,influxd} /usr/local/bin/
# Unpackage contents to the current working directory
gunzip -c ~/Downloads/influxdb_2.0.0-alpha.1_darwin_amd64.tar.gz | tar xopf -
# Copy the influx and influxd binary to your $PATH
sudo cp influxdb_2.0.0-alpha.1_darwin_amd64/{influx,influxd} /usr/local/bin/
```
{{% note %}}
Both InfluxDB 1.x and 2.x include `influx` and `influxd` binaries.
If InfluxDB 1.x binaries are already in your `$PATH`, run the 2.0 binaries in place
or rename them before putting them in your `$PATH`.
If you rename the binaries, all references to `influx` and `influxd` in this documentation refer to your renamed binaries.
{{% /note %}}
### Networking ports
By default, InfluxDB uses TCP port `9999` for client-server communication over InfluxDBs HTTP API.
@ -71,13 +83,25 @@ Download InfluxDB v2.0 alpha package appropriate for your chipset.
<a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb_2.0.0-alpha.1_linux_arm64.tar.gz" download >InfluxDB v2.0 alpha (arm)</a>
### Place the executables in your $PATH
Unzip the download package and place the `influx` and `influxd` executables in your system `$PATH`.
Unpackage the downloaded archive and place the `influx` and `influxd` executables in your system `$PATH`.
_**Note:** The following commands are examples. Adjust the file names, paths, and utilities to your own needs._
```sh
# Example
cp /path/to/{influx,influxd} /usr/local/bin/
# Unpackage contents to the current working directory
tar xvzf path/to/influxdb_2.0.0-alpha.1_linux_amd64.tar.gz
# Copy the influx and influxd binary to your $PATH
sudo cp influxdb_2.0.0-alpha.1_linux_amd64/{influx,influxd} /usr/local/bin/
```
{{% note %}}
Both InfluxDB 1.x and 2.x include `influx` and `influxd` binaries.
If InfluxDB 1.x binaries are already in your `$PATH`, run the 2.0 binaries in place
or rename them before putting them in your `$PATH`.
If you rename the binaries, all references to `influx` and `influxd` in this documentation refer to your renamed binaries.
{{% /note %}}
### Networking ports
By default, InfluxDB uses TCP port `9999` for client-server communication over InfluxDBs HTTP API.

View File

@ -17,11 +17,11 @@ influx org members [command]
```
## Subcommands
| Subcommand | Description |
|:---------- |:----------- |
| add | Add organization member |
| list | List organization members |
| remove | Remove organization member |
| Subcommand | Description |
|:---------- |:----------- |
| [add](/v2.0/reference/cli/influx/org/members/add) | Add organization member |
| [list](/v2.0/reference/cli/influx/org/members/list) | List organization members |
| [remove](/v2.0/reference/cli/influx/org/members/remove) | Remove organization member |
## Flags
| Flag | Description |

View File

@ -17,9 +17,9 @@ influx task log [command]
```
## Subcommands
| Subcommand | Description |
|:---------- |:----------- |
| find | Find logs for task |
| Subcommand | Description |
|:---------- |:----------- |
| [find](/v2.0/reference/cli/influx/task/log/find) | Find logs for task |
## Flags
| Flag | Description |

View File

@ -19,9 +19,9 @@ influx task run [command]
```
## Subcommands
| Subcommand | Description |
|:---------- |:----------- |
| find | Find runs for a task |
| Subcommand | Description |
|:---------- |:----------- |
| [find](/v2.0/reference/cli/influx/task/run/find) | Find runs for a task |
## Flags
| Flag | Description |