Using influxdb 2.0.5 and Grafana 7.4.3
I’m not able make the connection work no matter what I do.
I keep getting InfluxDB Error: Forbidden .
My configurations are:
URL : influx.dns
This dns works, also tried with direct ip.
Access : Server
Header : Authorization Value : Token mytoken
Token was generated by login into the influx UI with the admin user.
I generated a token with de description admin
Database : mydb
I got the DB name by doing the command:
influx v1 dbrp create \
--bucket-id bucketID \
--db grafana \
--rp grafana \
--default
user : admin
Password : pass
I got this user and pass by running the command:
influx v1 auth create \
--read-bucket mybucketid \
--write-bucket mybucketid \
--username admin
HTTP Method : GET
I can query the DB using the api like this and it works:
curl --get http://localhost:8086/query?db=example-db \
--header "Authorization: Token YourAuthToken" \
--data-urlencode "q=SELECT used_percent FROM example-db.example-rp.example-measurement WHERE host=host1"
Those configurations are the suggested ones in the documentation.
I also tried to brute force several combinations trying to find what could be wrong and nothing worked.