I am getting this error "tls: failed to verify certificate: x509: certificate is valid for 127.0.0.1, not x.x.x.x" #6731
Replies: 1 comment 2 replies
-
The error you're encountering, "tls: failed to verify certificate: x509: certificate is valid for 127.0.0.1, not x.x.x.x," typically occurs when the TLS certificate is issued for a specific domain or IP address (in this case, 127.0.0.1), but the request is being made to a different IP address (e.g., 192.168.121.37). To resolve this issue, you can consider the following options:
If you need to handle IP address mismatches in TLS certificates, you can set the To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Bug Report | Other |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello All,
.

I am getting an error when I send the traces to jaeger node. the HotROD application is sending the traces but on hotrod docker container logs says below.
Is my jaeger configuration correct?
Below is jaeger configuration...root@virttracing1:~# cat /var/opt/jaeger/config/configuration.yml
Ansible managed: Do NOT edit this file manually!
service:
extensions:
pipelines:
traces:
receivers:
processors:
exporters:
telemetry:
resource:
service.name: jaeger
metrics:
level: detailed
address: 0.0.0.0:8888
logs:
level: info
extensions:
healthcheckv2:
use_v2: true
component_health:
include_permanent_errors: false
include_recoverable_errors: true
recovery_duration: 5m
http:
endpoint: 0.0.0.0:13133
tls:
cert_file: /cmd/jaeger/tls/jaeger.crt
key_file: /cmd/jaeger/tls/jaeger.key
status:
enabled: true
path: /health/status
jaeger_query:
storage:
traces: elastic_storage
base_path: /
ui:
config_file: /cmd/jaeger/config/configuration-ui.json
grpc:
endpoint: 0.0.0.0:16685
http:
endpoint: 0.0.0.0:16686
tls:
cert_file: /cmd/jaeger/tls/jaeger.crt
key_file: /cmd/jaeger/tls/jaeger.key
jaeger_storage:
backends:
elastic_storage:
elasticsearch:
server_urls:
tls:
ca_file: /cmd/jaeger/tls/GPE-BTS-SST-Root-G1.crt
auth:
basic:
username: fluentd
password: fluentd_elastic
indices:
index_prefix: null
spans:
date_layout: '2006-01-02'
rollover_frequency: day
shards: 1
replicas: 1
services:
date_layout: '2006-01-02'
rollover_frequency: day
shards: 1
replicas: 1
dependencies:
date_layout: '2006-01-02'
rollover_frequency: day
shards: 1
replicas: 1
sampling:
date_layout: '2006-01-02'
rollover_frequency: day
shards: 1
replicas: 1
receivers:
otlp:
protocols:
grpc:
endpoint: 0.0.0.0:4317
http:
endpoint: 0.0.0.0:4318
tls:
cert_file: /cmd/jaeger/tls/jaeger.crt
key_file: /cmd/jaeger/tls/jaeger.key
processors:
batch: {}
exporters:
jaeger_storage_exporter:
trace_storage: elastic_storage
queue:
num_consumers: 10
queue_size: 100
root@virttracing1:~#
Beta Was this translation helpful? Give feedback.
All reactions