Environment
YugabyteDB Anywhere <= 2024.2.5.1-b1
Issue
When running the node-agent-provision.sh script during the provisioning phase, the process fails with the message ERROR - Request error: No connection adapters were found for '10.10.10.10:9443/api/v1/customers/UUID/providers?name=X'
Resolution
Overview
The Yugabyte node-agent-provision.sh replies on python to perform the needed operations to prepare nodes for YugabyteDB services. The error message No connection adapters were found is the characteristic error produced by the Python requests library when a URL is provided without a schema (e.g., yugabyte.com instead of https://yugabyte.com).
- The target URL specified in the error,
10.10.10.10:944, lacks anhttp://orhttps://prefix. - The port in the URL is
9443, which is the default HTTPS port for Yugabyte Anywhere, strongly implying the expected protocol ishttps://.
Resolution
Ensure that the values in your yaml file correctly points to an https endpoint.
Ref: SUPPORT-820
Comments
0 comments
Please sign in to leave a comment.