Influxdb: Difference between revisions

From Objectif Client Inc
Jump to navigation Jump to search
(Created page with "== Influx == [https://www.influxdata.com/ Influx] == Create Database == From the command line: <pre>influx</pre> <pre> create database database_name </pre>} <pre>show databa...")
 
Line 2: Line 2:


[https://www.influxdata.com/ Influx]
[https://www.influxdata.com/ Influx]
== Initial Setup==
=== Create Admin User ===
<pre>influx</pre>
<pre>CREATE USER myAdmin WITH PASSWORD 'myPassword' WITH ALL PRIVILEGES
=== Enable Login ===


== Create Database ==
== Create Database ==
From the command line:
From the command line:
<pre>influx</pre>
<pre>influx</pre>
<pre> create database database_name </pre>}
<pre> create database database_name </pre>
<pre>show databases</pre>
<pre>show databases</pre>

Revision as of 05:35, 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:
<pre>influx
 create database database_name 
show databases