Influxdb: Difference between revisions

From Objectif Client Inc
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>
<pre>
<pre>   bind-address = ."192.168.1.10" </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>
<pre>
<pre><auth-enabled = true</pre>
[http]
  auth-enabled = true
</pre>


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

Revision as of 05:41, 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