你好,所以我试图安装一个流浪汉插件,但我在mingW 64得到以下错误
$ vagrant plugin install vagrant-winnfsd
Installing the 'vagrant-winnfsd' plugin. This can take a few minutes...
Vagrant failed to load a configured plugin source. This can be caused
by a variety of issues including: transient connectivity issues, 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/
我在防火墙后面,必须手动通过公司证书。我更新了我的Ruby证书,但仍然没有运气。有人知道为什么流浪汉不拿我的pem/证书吗?
2条答案
按热度按时间xriantvc1#
有意思的是。Vagrant使用自己的证书。在其文件夹中:
路径为:C:\HashiCorp\Vagrant\embedded\cacert.cert在Windows上。
加上你的公司证书,你应该很好地去。
我解决了自己的问题。希望这能帮助其他人。
2jcobegt2#
你可以试试
vagrant插件安装--plugin-clean-sources --plugin-source https://rubygems.org vagrant-hostmanager
对我很有效...