欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Windows下初次尝试InfluxDB

程序员文章站 2022-07-13 17:13:51
...

InfluxDB在Windows下的安装

官网:https://www.influxdata.com/

下载地址:选择对应平台的influxdb:https://dl.influxdata.com/influxdb/releases/influxdb-1.7.6_windows_amd64.zip

下载之后直接解压在对应位置就可以使用,不需要安装。

解压之后的样子:

Windows下初次尝试InfluxDB

influx.exe 表示客户端,influxd.exe 表示服务端,influxdb.conf 是配置文件,

有的文章说我们需要修改该文件,主要是三个路径修改:改成你的influx解压的路径,后边的meta、data、wal是默认的文件夹的名字

[meta]
  # Where the metadata/raft database is stored
  dir = "D:/influxdb-1.8.0-1/meta"
[data]
  # The directory where the TSM storage engine stores TSM files.
  dir = "D:/influxdb-1.8.0-1/data"

  # The directory where the TSM storage engine stores WAL files.
  wal-dir = "D:/influxdb-1.8.0-1/wal"

但是经过我测试这个位置的路径设置在windows下是不生效的,真实的数据存储路径并不是我们指定的这个,而是

C:/Users/用户/.influxdb/下,会自动创建这三个文件夹。

所以此处路径可以不做修改,直接跳过就好了

启动:

打开Influxd.exe服务端,然后打开influx.exe客户端就可以进入命令行模式了

命令行的语法和SQL很相似

查看数据库:show database

Windows下初次尝试InfluxDB

创建普通用户:

create user "test" with password '123456'

创建管理员用户:

create user "root" with password '123456' with all privileges

查看用户:

Windows下初次尝试InfluxDB

创建数据库:

create database "db_name"

后续数据的插入和查询再研究,有时间再记录。

相关标签: InfluxDB