web-dev-qa-db-ja.com

--no-check-certificateをyumリポジトリーに追加する

これに応じてvirtio-win.repoを追加しました ガイド/etc/yum.repo.d/virtio-win.repoのコンテンツは現在

[virtio-win-stable]
name=virtio-win builds roughly matching what was shipped in latest RHEL
baseurl=http://fedorapeople.org/groups/virt/virtio-win/repo/stable
enabled=1
skip_if_unavailable=1
gpgcheck=0

[virtio-win-latest]
[virtio-win-source]

最後の2つの[]には、最初のオプションと同様のオプションがあります(これは私の問題ではありません)。 yum makecacheを実行すると、このエラーが発生します

http://fedorapeople.org/groups/virt/virtio-win/repo/stable/repodata/repomd.xml: [Errno 14] problem making ssl connection

wget http://fedorapeople.org/groups/virt/virtio-win/repo/stable/repodata/repomd.xmlを手動で実行してみましたが、--no-check-certificatewgetに追加して問題を解決することをお勧めします。

そのオプションを/etc/yum.repo.d/virtio-win.repoに追加するにはどうすればよいですか?

11
mahmood

1つのリポジトリの場合、リポジトリ構成に以下を追加できます。

sslverify=0

すべてのリポジトリについて、以下を「/etc/yum.conf」に追加できます。

sslverify=false
21
Aslan Brooke

CentOS 7.5では、これを実行するとうまくいきました:

yum-config-manager --save --setopt=<REPONAME>.sslverify=false
5
Mike