While doing oracle installation prerequisite check and configuration. DBA's now a days normally use YUM . While doing so we may face some issue on OEL6 for Oracle11gR2 installation i.e.
[root@dbsrv1 yum.repos.d]# yum install oracle-validated
Loaded plugins: refresh-packagekit, security, ulninfo
Setting up Install Process
No package oracle-validated available.
Error: Nothing to do
Even after wget it fails
[root@dbsrv1 yum.repos.d]# wget http://public-yum.oracle.com/public-yum-ol6.repo
--2015-10-10 22:08:55-- http://public-yum.oracle.com/public-yum-ol6.repo
Resolving public-yum.oracle.com... 96.17.182.9, 96.17.182.115
Connecting to public-yum.oracle.com|96.17.182.9|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 5552 (5.4K) [text/plain]
Saving to: “public-yum-ol6.repo.1â€
100%[======================================>] 5,552 --.-K/s in 0s
2015-10-10 22:08:56 (85.2 MB/s) - “public-yum-ol6.repo.1†saved [5552/5552]
[root@dbsrv1 yum.repos.d]# yum install oracle-validated
Loaded plugins: refresh-packagekit, security, ulninfo
Setting up Install Process
No package oracle-validated available.
Error: Nothing to do
There is a change in this option and to fix this issue we may proceed like this
[root@dbsrv1 yum.repos.d]# yum install oracle-rdbms-server-11gR2-preinstall.x86_64
Loaded plugins: refresh-packagekit, security, ulninfo
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package oracle-rdbms-server-11gR2-preinstall.x86_64 0:1.0-12.el6 will be installed
--> Processing Dependency: compat-libcap1 for package: oracle-rdbms-server-11gR2-preinstall-1.0-12.el6.x86_64
--> Processing Dependency: ksh for package: oracle-rdbms-server-11gR2-preinstall-1.0-12.el6.x86_64
--> Processing Dependency: libaio-devel for package: oracle-rdbms-server-11gR2-preinstall-1.0-12.el6.x86_64
--> Processing Dependency: compat-libstdc++-33 for package: oracle-rdbms-server-11gR2-preinstall-1.0-12.el6.x86_64
--> Running transaction check
---> Package compat-libcap1.x86_64 0:1.10-1 will be installed
---> Package compat-libstdc++-33.x86_64 0:3.2.3-69.el6 will be installed
---> Package ksh.x86_64 0:20120801-28.el6_7.3 will be installed
---> Package libaio-devel.x86_64 0:0.3.107-10.el6 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
oracle-rdbms-server-11gR2-preinstall
x86_64 1.0-12.el6 public_ol6_latest 18 k
Installing for dependencies:
compat-libcap1 x86_64 1.10-1 public_ol6_latest 17 k
compat-libstdc++-33 x86_64 3.2.3-69.el6 public_ol6_latest 183 k
ksh x86_64 20120801-28.el6_7.3 public_ol6_latest 760 k
libaio-devel x86_64 0.3.107-10.el6 public_ol6_latest 13 k
Transaction Summary
================================================================================
Install 5 Package(s)
Total download size: 990 k
Installed size: 2.5 M
Is this ok [y/N]: y
Downloading Packages:
(1/5): compat-libcap1-1.10-1.x86_64.rpm | 17 kB 00:00
(2/5): compat-libstdc++-33-3.2.3-69.el6.x86_64.rpm | 183 kB 00:00
(3/5): ksh-20120801-28.el6_7.3.x86_64.rpm | 760 kB 00:02
(4/5): libaio-devel-0.3.107-10.el6.x86_64.rpm | 13 kB 00:00
(5/5): oracle-rdbms-server-11gR2-preinstall-1.0-12.el6.x | 18 kB 00:00
--------------------------------------------------------------------------------
Total 228 kB/s | 990 kB 00:04
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : ksh-20120801-28.el6_7.3.x86_64 1/5
Installing : compat-libstdc++-33-3.2.3-69.el6.x86_64 2/5
Installing : libaio-devel-0.3.107-10.el6.x86_64 3/5
Installing : compat-libcap1-1.10-1.x86_64 4/5
Installing : oracle-rdbms-server-11gR2-preinstall-1.0-12.el6.x86_64 5/5
Verifying : compat-libcap1-1.10-1.x86_64 1/5
Verifying : libaio-devel-0.3.107-10.el6.x86_64 2/5
Verifying : compat-libstdc++-33-3.2.3-69.el6.x86_64 3/5
Verifying : ksh-20120801-28.el6_7.3.x86_64 4/5
Verifying : oracle-rdbms-server-11gR2-preinstall-1.0-12.el6.x86_64 5/5
Installed:
oracle-rdbms-server-11gR2-preinstall.x86_64 0:1.0-12.el6
Dependency Installed:
compat-libcap1.x86_64 0:1.10-1 compat-libstdc++-33.x86_64 0:3.2.3-69.el6
ksh.x86_64 0:20120801-28.el6_7.3 libaio-devel.x86_64 0:0.3.107-10.el6
Complete!
[root@dbsrv1 yum.repos.d]#
All set for installation...:)
oh!! good. even i faced the same problem but took admin's help to get the packages..
ReplyDeletenice info.