This message was deleted.
# ask-community-for-troubleshooting
s
This message was deleted.
k
The error you're encountering indicates an SSL certificate verification issue when Airbyte tries to connect to
<http://connectors.airbyte.com|connectors.airbyte.com>
. Specifically, the error shows:
Copy code
javax.net.ssl.SSLPeerUnverifiedException: Hostname <http://connectors.airbyte.com|connectors.airbyte.com> not verified:    certificate: sha256/V6+UW870mPIAqO4OSQWObZOga2XxL4WUkP/rcZYRbUw=    DN: CN=<http://agrar-rent.kmuu.de|agrar-rent.kmuu.de>    subjectAltNames: [<http://agrar-rent.kmuu.de|agrar-rent.kmuu.de>]
This suggests that the SSL certificate being presented doesn't match
<http://connectors.airbyte.com|connectors.airbyte.com>
- instead, it's showing a certificate for
<http://agrar-rent.kmuu.de|agrar-rent.kmuu.de>
. This typically happens when there's a proxy or network interceptor between your Kubernetes deployment and the remote connector registry. Based on the knowledge sources, similar issues have been reported when deploying Airbyte in environments with: 1. Proxy configurations - As mentioned in [Deployment Fails when proxy setting requires Authentication](https://github.com/airbytehq/airbyte/issues/53227), proxy settings can interfere with connections to
<http://connectors.airbyte.com|connectors.airbyte.com>
2. Air-gapped or restricted network environments - The [Error will upgrading Airbyte version with existing connection in an air gap environment](https://github.com/airbytehq/airbyte/issues/44441) issue shows similar connectivity problems to the remote registry ## Potential Solutions: 1. Check your network/proxy configuration: If you're behind a corporate proxy or firewall, ensure that SSL inspection isn't interfering with the connection to
<http://connectors.airbyte.com|connectors.airbyte.com>
2. Verify DNS and routing: The certificate mismatch suggests traffic might be routed through an unexpected endpoint 3. Review your Kubernetes network policies: Ensure your cluster can properly reach external endpoints Unfortunately, the knowledge sources don't contain a specific solution for this exact SSL certificate verification error. You may need to investigate your network infrastructure or consider reaching out to Airbyte support with details about your Kubernetes environment and network configuration.