Discussions
Categories
- 17.9K All Categories
- 3.4K Industry Applications
- 3.3K Intelligent Advisor
- 63 Insurance
- 535.7K On-Premises Infrastructure
- 138.1K Analytics Software
- 38.6K Application Development Software
- 5.6K Cloud Platform
- 109.3K Database Software
- 17.5K Enterprise Manager
- 8.8K Hardware
- 71K Infrastructure Software
- 105.2K Integration
- 41.5K Security Software
How to install libvirt package in OVM Server 3.x

We're trying to follow the link https://blogs.oracle.com/scoter/post/how-to-migrate-oracle-vm-to-oracle-linux-kvm
As per Oracle Document Id 2624531.1 and above link it is mentioned that "libvirt" package to be installed and enabled in both OVM Host and OLVM.
Our question or error we face is we cannot install libvirt package in OVM Server,
[[email protected] yum.repos.d]# yum install libvirt
http://yum.oracle.com/repo/OracleVM/OVM3/3x_latest/x86_64/repodata/repomd.xml: [Errno 14] problem making ssl connection
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: ovm3x_x86_64_latest. Please verify its path and try again
Thanks for your valuable time and response. Much appreciated in Advance!
Karthik Singh
Answers
-
Hi ,
Suspecting the issue with your repo configuration.
Move all old repos to backup directory and place only this repo .
Yum clean all
Then try to install.
Regards,
Satya
-
Hi,
Yes we tried that step too.
Removed the complete repo file
yum clean all
yum repolist
It didn't helped.
Regards,
Karthik
-
Hi.
Please show what command You use for: "Removed the complete repo file"
Please show result of command: yum repolist
Try change Base url from: http://yum.oracle.com... to https://yum.oracle.com...
Regards,
Nik
-
rm -rf ovm.repo is the command used to remove the complete repo file.
[[email protected] ~]# yum repolist
https://yum.oracle.com/repo/OracleVM/OVM3/3x_latest/x86_64/repodata/repomd.xml: [Errno 14] problem making ssl connection
Trying other mirror.
repo id repo name status
ovm3_x86_64_latest ovm3_x86_64_latest 0
repolist: 0
[[email protected] ~]#
[[email protected] yum.repos.d]# cat ovm.repo
[ovm3x_x86_64_latest]
name=ovm3x_x86_64_latest
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY
baseurl=https://yum.oracle.com/repo/OracleVM/OVM3/3x_latest/x86_64/
enabled=1
gpgcheck=1
[[email protected] yum.repos.d]#
[[email protected] yum.repos.d]# cat ovm.repo.EXTERNAL
[ovm3x_x86_64_latest]
name=ovm3x_x86_64_latest
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
baseurl=http://yum.oracle.com/repo/OracleVM/OVM3/3x_latest/x86_64/
enabled=1
gpgcheck=1
[[email protected] yum.repos.d]#
-
In addition we would like to know one more thing.
Oracle VM Server/dom0 host is having el6 and we don't see the "libvirt" rpm or public yum for el6.
In this case how does it goes through?
[[email protected] ~]# uname -r
3.8.13-118.15.1.el6uek.x86_64
Regards,
Karthik
-
HI
baseurl=https://yum.oracle.com/repo/OracleVM/OVM3/3x_latest/x86_64/
The above path doesn't have the required package,
# yum-config-manager --enable ol7_latest
yum install oracle-ovirt-release-el7
Regards,
Satya
-
[[email protected] ~]# yum-config-manager --enable ol7_latest
-bash: yum-config-manager: command not found
[[email protected] ~]# uname -r
3.8.13-118.15.1.el6uek.x86_64
[[email protected] ~]# cat /etc/oracle-release
Oracle VM server release 3.3.5
[[email protected] ~]# yum -y install yum-utils
https://yum.oracle.com/repo/OracleVM/OVM3/3x_latest/x86_64/repodata/repomd.xml: [Errno 14] problem making ssl connection
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: ovm3_x86_64_latest. Please verify its path and try again
-
Hi
Are you able to reach below path from your server
Regards,
Satya
-
Hi,
Using wget yes I could get the repomd.xml
[[email protected] ~]# wget https://yum.oracle.com/repo/OracleVM/OVM3/3x_latest/x86_64/repodata/repomd.xml
--2021-11-02 14:06:23-- https://yum.oracle.com/repo/OracleVM/OVM3/3x_latest/x86_64/repodata/repomd.xml
Resolving yum.oracle.com... 23.1.37.172, 2600:140f:e:288::2a7d, 2600:140f:e:280::2a7d
Connecting to yum.oracle.com|23.1.37.172|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2529 (2.5K) [application/xml]
Saving to: “repomd.xml”
100%[==================================================================================================================================>] 2,529 --.-K/s in 0s
2021-11-02 14:06:24 (9.79 MB/s) - “repomd.xml” saved [2529/2529]
[[email protected] ~]# ls -lrt repomd.xml
-rw-r--r-- 1 root root 2529 Oct 9 2020 repomd.xml
[[email protected] ~]#
Regards,
Karthik