Unable to locally verify the issuer's authority. To connect to animegan-mxsdk.obs.cn-north-4.myhuaweicloud.com insecurely, use `--no-check-certificate'.
时间: 2024-04-02 21:36:15 浏览: 199
这不是一个问题,而是一个错误提示。它说明你在尝试连接到 animegan-mxsdk.obs.cn-north-4.myhuaweicloud.com 时遇到了 SSL 证书验证问题。你可以尝试使用 `--no-check-certificate` 参数来不进行证书验证连接,但这并不是一个安全的做法。最好的解决方法是安装正确的证书或者检查你的网络设置。
相关问题
Unable to locally verify the issuer's authority. To connect to github.com insecurely, use `--no-check-certificate'
这个错误通常是因为 SSL 证书验证失败导致的。我们可以尝试使用 `--no-check-certificate` 选项来跳过 SSL 证书验证。可以使用以下命令连接到 GitHub:
```
git clone --no-check-certificate https://github.com/username/repo.git
```
或者,如果您已经克隆了存储库,可以使用以下命令:
```
git config http.sslVerify false
```
请注意,这些方法都会使连接不安全,并且不建议在生产环境中使用。如果您遇到此错误,请确保您的 SSL 证书配置正确,并尝试使用其他网络连接来验证它是否是您的网络问题。
Unable to locally verify the issuer's authority.
This error message typically appears when your computer's SSL certificate store does not have the necessary root certificates to verify the SSL certificate presented by the remote server. One solution is to update your SSL certificate store with the latest root certificates. This can usually be done by updating your operating system or web browser. Another solution is to manually add the root certificate for the remote server to your SSL certificate store. However, this should only be done if you trust the remote server and its certificate.
阅读全文