Influxdb: Difference between revisions

From Objectif Client Inc
Jump to navigation Jump to search
No edit summary
Line 4: Line 4:


== Initial Setup==
== Initial Setup==
* Force listen on local IP
<pre>[http]</pre>
<pre>  bind-address = ."192.168.1.10" </pre>


=== Create Admin User ===
=== Create Admin User ===
Line 10: Line 14:


=== Enable Login ===
=== Enable Login ===
 
<pre>[http]</pre>
<pre><auth-enabled = true</pre>


== Create Database ==
== Create Database ==

Revision as of 05:40, 16 October 2020

Influx

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