Influxdb: Difference between revisions
Jump to navigation
Jump to search
Line 7: | Line 7: | ||
=== Create Admin User === | === Create Admin User === | ||
<pre>influx</pre> | <pre>influx</pre> | ||
< | <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> | ||
< | <syntaxhighlight lang="mysql">create database database_name </syntaxhighlight> | ||
< | <syntaxhighlight lang="mysql">show databases</syntaxhighlight> |
Revision as of 05:36, 16 October 2020
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