首页 > 解决方案 > Grafana 在尝试配置 InfluxDB 时给出错误消息“服务器错误”

问题描述

我正在创建一个新用户。尽管如此,Grafana 还是给了我一个错误

pi@raspberrypi:~ $ influx
Connected to http://localhost:8086 version 1.8.0
InfluxDB shell version: 1.8.0
> CREATE USER "todd" WITH PASSWORD '123456'
> CREATE DATABASE toddDb
> quit
pi@raspberrypi:~ $ hostname -I
192.168.0.14

在此处输入图像描述

如何使与 InfluxDB 的 frafana 连接正常工作?

编辑

我的conf文件/etc/influxdb/influxdb.conf配置如下:

[http]

  # Determines whether HTTP endpoint is enabled.
  enabled = true

  # The bind address used by the HTTP service.
  bind-address = ":8086"

  # Determines whether user authentication is enabled over HTTP/HTTPS.
  auth-enabled = true

  # Determines whether the pprof endpoint is enabled.  This endpoint is used for
  # troubleshooting and monitoring.
  pprof-enabled = true

  # Enables authentication on pprof endpoints. Users will need admin permissions
  # to access the pprof endpoints when this setting is enabled. This setting has
  # no effect if either auth-enabled or pprof-enabled are set to false.
  pprof-auth-enabled = true

  # Enables authentication on the /ping, /metrics, and deprecated /status
  # endpoints. This setting has no effect if auth-enabled is set to false.
  ping-auth-enabled = true

标签: raspberry-pigrafanainfluxdb

解决方案


哦,那是一个荒谬的问题。

URL字段中,地址需要加上前缀http://

要么工作http://192.168.0.14:8086_http://localhost:8086

在此处输入图像描述


推荐阅读