You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: DEVELOPMENT.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ cd ui
41
41
yarn && yarn start
42
42
```
43
43
44
-
If there are no errors, hit [localhost:8080](http://localhost:8080) and follow the prompts to setup your username and password. *Note the port difference: `8080` vs the production `9999`*
44
+
If there are no errors, hit [localhost:8080](http://localhost:8080) and follow the prompts to setup your username and password. *Note the port difference: `8080` vs the production `8086`*
45
45
46
46
You're set up to develop Influx locally. Any changes you make to front-end code under the `ui/` directory will be updated after the watcher process (that was initiated by running `yarn start`) sees them and rebuilds the bundle. Any changes to go code will need to be re-compiled by re-running the `go run` command above.
47
47
@@ -65,7 +65,7 @@ Tab 1:
65
65
go run ./cmd/influxd --assets-path=ui/build
66
66
```
67
67
68
-
This starts the influxdb application server. It handles API requests and can be reached via `localhost:9999`. Any changes to go code will need to be re-compiled by re-running the `go run` command above.
68
+
This starts the influxdb application server. It handles API requests and can be reached via `localhost:8086`. Any changes to go code will need to be re-compiled by re-running the `go run` command above.
Copy file name to clipboardexpand all lines: README.md
+32-47
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ Planned activities include:
42
42
43
43
## Installing from Source
44
44
45
-
We have nightly and weekly versioned Docker images, Debian packages, RPM packages, and tarballs of InfluxDB available at the [InfluxData downloads page](https://portal.influxdata.com/downloads/).
45
+
We have nightly and weekly versioned Docker images, Debian packages, RPM packages, and tarballs of InfluxDB available at the [InfluxData downloads page](https://portal.influxdata.com/downloads/). We also provide the `influx` command line interface (CLI) client as a separate binary available at the same location.
46
46
47
47
## Building From Source
48
48
@@ -133,17 +133,12 @@ Everything in InfluxDB is organized under a concept of an organization. The API
133
133
Buckets represent where you store time series data.
134
134
They're synonymous with what was previously in InfluxDB 1.x a database and retention policy.
135
135
136
-
The simplest way to get set up is to point your browser to [http://localhost:9999](http://localhost:9999) and go through the prompts.
136
+
The simplest way to get set up is to point your browser to [http://localhost:8086](http://localhost:8086) and go through the prompts.
137
137
138
-
**Note**: Port 9999 will be used during the beta phases of development of InfluxDB v2.0.
139
-
This should allow a v2.0-beta instance to be run alongside a v1.x instance without interfering on port 8086.
140
-
InfluxDB will thereafter continue to use 8086.
138
+
You can also get set up from the CLI using the command `influx setup`:
141
139
142
-
You can also get set up from the CLI using the subcommands `influx user`, `influx auth`, `influx org` and `influx bucket`,
Once setup is complete, a configuration profile is created to allow you to interact with your local InfluxDB without passing in credentials each time. You can list and manage those profiles using the `influx config` command.
2019-12-30T22:22:44.776351000Z 2019-12-30T23:22:44.776351000Z v m 2019-12-30T23:17:02.000000000Z 2
231
-
>
232
-
```
233
-
218
+
Use the `-r, --raw` option to return the raw flux response from the query. This is useful for moving data from one instance to another as the `influx write` command can accept the Flux response using the `--format csv` option.
0 commit comments