Influxdb: Difference between revisions

From Objectif Client Inc
Jump to navigation Jump to search
Line 7: Line 7:
=== Create Admin User ===
=== Create Admin User ===
<pre>influx</pre>
<pre>influx</pre>
<pre>CREATE USER myAdmin WITH PASSWORD 'myPassword' WITH ALL PRIVILEGES
<syntaxhighlight lang="mysql">CREATE USER myAdmin WITH PASSWORD 'myPassword' WITH ALL PRIVILEGES </syntaxhighlight>


=== Enable Login ===
=== Enable Login ===
Line 15: Line 15:
From the command line:
From the command line:
<pre>influx</pre>
<pre>influx</pre>
<pre> create database database_name </pre>
<syntaxhighlight lang="mysql">create database database_name </syntaxhighlight>
<pre>show databases</pre>
<syntaxhighlight lang="mysql">show databases</syntaxhighlight>

Revision as of 05:36, 16 October 2020

Influx

Influx

Initial Setup

Create Admin User

influx
CREATE USER myAdmin WITH PASSWORD 'myPassword' WITH ALL PRIVILEGES

Enable Login

Create Database

From the command line:

influx
create database database_name
show databases