如何将mysql服务器连接到grafana?

dwbf0jvd  于 2021-06-19  发布在  Mysql
关注(0)|答案(1)|浏览(712)

我是grafana的新手,我需要将我的数据库(mysql)连接到它。
我尝试如下配置custom.ini文件,
我添加了关于数据库的下一节


#################################### Database

#################################### 

type = mysql
host = localhost:3306
name = grafana (db on my sql server)
user = grafana (user on my sql server)

#### If the password contains # or ; you have to wrap it with triple quotes.

Ex “”"#password;"""
password =*****(password of my sql user)

下一节是会话


#################################### Session ####################################

[session]

provider = mysql (at the beginning)

provider_config = grafana:*******@tcp(localhost:3306)/grafana 
provider = mysql (at the end)

当我尝试连接到服务时,我得到一个错误:“service init failed:migration failed err:不支持此身份验证插件”
我是grafana的新手,不知道是否需要在custom.ini中设置更多的想法
如果有人能找出这里的问题,我将是世界上最幸福的人:d
谢谢你花时间阅读这篇文章,也非常感谢救世主!!

weylhg0b

weylhg0b1#

我终于找到问题了。事实上,mysql 8有一些权限限制,这给连接grafana或读取文件带来了很多问题。所以我安装了mysql 5.7,一切正常!

相关问题