これに応じて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-certificate
をwget
に追加して問題を解決することをお勧めします。
そのオプションを/etc/yum.repo.d/virtio-win.repo
に追加するにはどうすればよいですか?
1つのリポジトリの場合、リポジトリ構成に以下を追加できます。
sslverify=0
すべてのリポジトリについて、以下を「/etc/yum.conf」に追加できます。
sslverify=false
CentOS 7.5では、これを実行するとうまくいきました:
yum-config-manager --save --setopt=<REPONAME>.sslverify=false