我遵循了这里的入门说明:安装链接器的,但是我无法安装链接器的cli。
请参见以下命令:curl -sL sh
请参阅以下错误:
curl: (60) SSL certificate problem: self signed certificate in certificate chain
More details here: https://curl.haxx.se/docs/sslcerts.html
curl performs SSL certificate verification by default, using a "bundle"
of Certificate Authority (CA) public keys (CA certs). If the default
bundle file isn't adequate, you can specify an alternate file
using the --cacert option.
If this HTTPS server uses a certificate signed by a CA represented in
the bundle, the certificate verification probably failed due to a
problem with the certificate (it might be expired, or the name might
not match the domain name in the URL).
If you'd like to turn off curl's verification of the certificate, use
the -k (or --insecure) option有人能帮我解决这个问题吗。
发布于 2020-05-18 00:27:13
从Linkerd网站提供的安装说明确实很模糊,它们为Linux (shell)用户提供指导,并为OSX用户提供一个brew install命令。
如果您对在Windows计算机上安装LinkerD感兴趣,则需要从其发布页面( https://github.com/linkerd/linkerd2/releases )直接下载二进制文件(.exe - form )。
下载二进制文件后,您应该能够更新%PATH%环境变量以添加二进制文件的位置,这将允许您从命令提示符直接引用linkerd。
发布于 2020-09-02 04:33:37
Linkerd开始用一个巧克力包支持Windows:https://chocolatey.org/packages/Linkerd2
要使用它,请确保安装好巧克力并运行:
choco install linkerd2安装之后,验证安装是否成功:
linkerd --help您应该会看到Linkerd可用的命令列表。
https://stackoverflow.com/questions/61792408
复制相似问题