0

I am trying to contact influxdb running on kubernetes. I am new on influxdb and I have just started using it. I used the query http API in the following way: curl "http://pod_ip_address/query?q=show+databases" , but the response is {"code":"unauthorized","message":"unauthorized access"}. Now I have just the user UI, so maybe the problem could be related to that. Does anybody know what could be the issue?

C1ngh10
  • 13
  • 1
  • 7

1 Answers1

3

InfluxDB 2.0 requires authentication using an ORG and a Token. You can pass these as HTTP headers in your curl call as shown here: https://docs.influxdata.com/influxdb/v2.0/api-guide/api_intro/#authentication

mhall119
  • 522
  • 2
  • 3