简体   繁体   English

服务网格中的安装错误 aks 中的 Linkerd 服务网格

[英]Installation error in Service mesh Linkerd service mesh in aks

I have followed the getting started instructions here: https://linkerd.io/2/getting-started/ for installing linkerd but i am not able to install cli of linkerd.我已按照此处的入门说明进行操作: https://linkerd.io/2/getting-started/用于安装链接器,但我无法安装链接器的 cli。

Please see the command below: curl -sL https://run.linkerd.io/install |请看下面的命令: curl -sL https://run.linkerd.io/install | sh

Please see the error below:请看下面的错误:

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

Can anyone please help me to solve it.谁能帮我解决它。

The provides installation instructions from the Linkerd website are indeed vague, they provide instruction for Linux (shell) users as well as a brew install command for OSX users. Linkerd 网站提供的安装说明确实含糊不清,它们为 Linux (shell) 用户提供说明,并为 OSX 用户提供brew install命令。

If you are interested in installing LinkerD on your Windows machine, the recommandation is to download the binary (.exe - for Windows) directly form their release page: https://github.com/linkerd/linkerd2/releases如果您有兴趣在 Windows 机器上安装 LinkerD,建议直接从他们的发布页面下载二进制文件(.exe - 适用于 Windows): https://github.com/linkerd/linkerd2/releases

After you have downloaded the binary, you should be able to update your %PATH% environment variable to add the location of the binary, this will allow you to refer to the linkerd directly from your command prompt.下载二进制文件后,您应该能够更新 %PATH% 环境变量以添加二进制文件的位置,这将允许您直接从命令提示符引用linkerd

Linkerd started supporting Windows with a Chocolatey package: https://chocolatey.org/packages/Linkerd2 Linkerd 开始使用 Chocolatey package 支持 Windows: https://chocolatey.org/packages/Linkerd2

To use it, make sure that you have Chocolatey installed and run:要使用它,请确保您已安装 Chocolatey 并运行:

choco install linkerd2

After the installation, verify that the install was successful with:安装后,验证安装是否成功:

linkerd --help

You should see the list of commands available to the Linkerd CLI.您应该会看到 Linkerd CLI 可用的命令列表。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM