企業プロキシの背後にいて、Hyperledger Sawtooth を Ubuntu マシンにインストールしようとしています。
そのセットアップの一部は、失敗しているさびをインストールしています。
コマンドの一部として「Dockerfile」ファイルから取得した次のコマンドを使用しますdocker-compose up
。
curl --insecure https://sh.rustup.rs -sSf > /usr/bin/rustup-init && chmod +x /usr/bin/rustup-init && rustup-init -y
これは私にエラーを与えます:
curl: (60) server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none
More details here: http://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.
rustup: command failed: downloader https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init /tmp/tmp.KEMZg5vZRK/rustup-init
どうやら、私は企業のプロキシの背後にいて、URL https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-initに接続できなかったため、コマンドrustup-init -y
が失敗しているようです。
セキュリティで保護されていない接続を取得し、インストールが成功するように、curl の証明書検証オプションをオフにする変更 (-k フラグを追加) をどこで行うのですか?
rustup-init.sh ファイルを修正してみましたが、だめです。