Open drc-infinyon opened 9 months ago
Some WSL systems seem to have a curl installed that don't seem to reference the system ca cert chain, you can install or configure one for curl. Other frequent Windows issues seem to be firewalls setup to block certain certificate authoritty chains (ca).
This link seems to go through a number of different windows curl certificate issues and how to resolve them. One of the simpler resolutions to try might be to verify that /etc/ssl/certs/ca-certificates.crt
exists on your system and explictly reference it for curl.
export CURL_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
curl -fsS https://hub.infinyon.cloud/install/install.sh | bash
Other workarounds are to use another cli download utility such as wget, or even open 'https://hub.infinyon.cloud/install/install.sh' from the browser, save install.sh
and run it directly via bash install.sh
is this WSL or WSL2?
is this WSL or WSL2?
Windows 11-WSL2
maybe this issue is relevant? https://github.com/microsoft/WSL/issues/8358
Stale issue message
curl -fsS https://hub.infinyon.cloud/install/install.sh | bash curl: (60) SSL certificate problem: unable to get local issuer certificate More details here: https://curl.se/docs/sslcerts.html
curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it. To learn more about this situation and how to fix it, please visit the web page mentioned above.
Originally posted by @kharabela in https://github.com/infinyon/fluvio/discussions/3880#discussioncomment-8610508