Установка ржавчины не удалась.Команда "rustup-init -y" выбрасывает и выдает ошибку - PullRequest
0 голосов
/ 15 ноября 2018

Я работаю за корпоративным прокси и пытаюсь установить 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

Очевидно, что команда rustup-init -y не работает, так как я нахожусь за корпоративным прокси-сервером, и ей не удалось подключиться к URL https://static.rust -lang.org / rustup / dist / x86_64-unknown-linux-gnu / rustup иниц .

Где мне внести изменения (добавить флаг -k), чтобы отключить параметр проверки сертификата curl, чтобы получить небезопасное соединение и моя установка прошла успешно?

Я пытался изменить файл rustup-init.sh , но он бесполезен.

...