Моя компания использует прокси. Я использую ноутбук с Windows 10, 64-битный. Бродячая версия 2.1.1. При попытке установить плагин Vagrant, например,

vagrant plugin install vagrant-proxyconf

Я вижу следующую ошибку:

Installing the 'vagrant-proxyconf' plugin. This can take a few minutes...
ERROR: SSL verification error at depth 1: unable to get local issuer certificate (20)
ERROR: You must add /DC=net/DC=<MY_COMPANY>/DC=corp/CN=<CA-Name> to your local trusted store
Vagrant failed to load a configured plugin source. This can be caused by a variety of issues including: transient connectivity, proxy filtering rejecting access to a configured plugin source, or a configured plugin source not responding correctly. Please review the error message below to help resolve the issue:

SSL_connect returned=1 errno=0 state=error: certificate verify failed (https://api.rubygems.org/specs.4.8.gz)

Source: https://rubygems.org/

Я попытался выполнить шаги, показанные здесь:https://stackoverflow.com/questions/19872591/how-to-use-vagrant-in-a-proxy-environment

set http_proxy=http://user:password@host:port
set https_proxy=http://user:password@host:port
vagrant plugin install vagrant-proxyconf

но это не помогло

После экспорта упомянутого сертификата (надеюсь, он был правильным; есть два сертификата с одинаковым именем) выше и добавление его в ...\HashiCorp\Vagrant\ внедренный \ cacert.pem

(в соответствии с предложением установки плагина vagrant в корпоративной сети) я получил еще одну ошибку SSL:

Installing the 'vagrant-proxyconf' plugin. This can take a few minutes...
ERROR: SSL verification error at depth 2: unable to get issuer certificate (2)
Vagrant failed to load a configured plugin source. This can be caused by a variety of issues including: transient connectivity, proxy filtering rejecting access to a configured plugin source, or a configured plugin source not responding correctly. Please review the error message below to help resolve the issue:

SSL_connect returned=1 errno=0 state=error: certificate verify failed (https://api.rubygems.org/specs.4.8.gz)

Source: https://rubygems.org/

0