Influxdb: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 6: | Line 6: | ||
* Force listen on local IP | * Force listen on local IP | ||
<pre>[http] | <pre> | ||
[http] | |||
bind-address = ."192.168.1.10" | |||
</pre> | |||
=== Create Admin User === | === Create Admin User === | ||
Line 14: | Line 16: | ||
=== Enable Login === | === Enable Login === | ||
<pre>[http] | <pre> | ||
[http] | |||
auth-enabled = true | |||
</pre> | |||
== Create Database == | == Create Database == |
Revision as of 05:41, 16 October 2020
Influx
Initial Setup
- Force listen on local IP
[http] bind-address = ."192.168.1.10"
Create Admin User
influx
CREATE USER myAdmin WITH PASSWORD 'myPassword' WITH ALL PRIVILEGES
Enable Login
[http] auth-enabled = true
Create Database
From the command line:
influx
create database database_name
show databases