You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I'm trying to connect my InfluxDb with my Rails app but I'm faced with this error;
WARN -- InfluxDB: Failed to contact host xxxxx: #<SocketError: Failed to open TCP connection to xxxx:8086 (getaddrinfo: nodename nor servname provided, or not known)>
config.client.database = "db"
config.client.hosts = ["host"]
config.client.port = 8086
config.client.use_ssl = true
## If you've setup user authentication (and activated it in the server
## config), you need to configure the credentials here.
config.client.username = "xxxx"
config.client.password = "xxx"
I'm able to send a request to influxdb from another container in the same network, and also from my machine using postman. I can see the requests in the container logs for influxdb. But my Rails app keeps giving the same error, locally and on my server. Any hints?
The text was updated successfully, but these errors were encountered:
Hello, I'm trying to connect my InfluxDb with my Rails app but I'm faced with this error;
I made the changes suggested in this issue: #153
Here is what my config looks like;
I'm able to send a request to influxdb from another container in the same network, and also from my machine using postman. I can see the requests in the container logs for influxdb. But my Rails app keeps giving the same error, locally and on my server. Any hints?
The text was updated successfully, but these errors were encountered: