- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: redhat cluster suite installation.
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 02:16 AM
09-11-2006 02:16 AM
[root@dbnode1 RPMS]# rpm -ivh *.rpm
error: Failed dependencies:
/lib/modules/2.6.9-22.EL is needed by cman-kernel-2.6.9-39.5.ia64
/lib/modules/2.6.9-22.EL is needed by dlm-kernel-2.6.9-37.7.ia64
[root@dbnode1 RPMS]# uname -a
Linux dbnode1 2.6.9-22.EL #1 SMP Mon Sep 11 16:48:38 AST 2006 ia64 ia64 ia64 GNU/Linux
[root@dbnode1 RPMS]# uname -r
2.6.9-22.EL
[root@dbnode1 RPMS]#
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 02:51 AM
09-11-2006 02:51 AM
SolutionProbably, you do have installed the kernel but is not in the rpm database, that's why it complains about it.
What is the output of?
rpm -qa |grep kernel
If the directory /lib/modules/2.6.9-22.EL do exits (and it should because of the output of uname -r), but in the output of rpm -qa you don't see the package, then you can install the packages using:
rpm -Uvh *.rpm --nodeps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 03:07 AM
09-11-2006 03:07 AM
Re: redhat cluster suite installation.
[root@dbnode2 linux]# rpm -qa | grep kernel
kernel-devel-2.6.9-11.EL
kernel-utils-2.4-13.1.66
kernel-2.6.9-11.EL
[root@dbnode2 linux]# cd /lib/modules
[root@dbnode2 modules]# ls
2.6.9-11.EL 2.6.9-22.EL kabi-4.0-0
[root@dbnode2 modules]# ls -lrt
total 24
drwxr-xr-x 2 root root 4096 May 21 2005 kabi-4.0-0
drwxr-xr-x 3 root root 4096 Aug 19 16:35 2.6.9-11.EL
drwxr-xr-x 3 root root 4096 Sep 10 16:55 2.6.9-22.EL
[root@dbnode2 modules]#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 03:10 AM
09-11-2006 03:10 AM
Re: redhat cluster suite installation.
rpm -Uvh *.rpm --nodeps
what does the --nodeps mean ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 03:20 AM
09-11-2006 03:20 AM
Re: redhat cluster suite installation.
for your running kernel you should have appropriate kernel-devel package.
As for "--nodeps" option, it asks RPM don't check for dependencies. I don't think this will help in you case.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 03:25 AM
09-11-2006 03:25 AM
Re: redhat cluster suite installation.
[root@dbnode1 RPMS]# rpm -qa | grep kernel
kernel-2.6.9-42.0.2.EL
kernel-2.6.9-42.EL
kernel-module-ntfs-2.6.9-22.EL-2.1.20-0.rr.10.0
kernel-utils-2.4-13.1.83
kernel-devel-2.6.9-42.0.2.EL
kernel-module-ntfs-2.6.9-22.ELsmp-2.1.20-0.rr.10.0
kernel-devel-2.6.9-11.EL
kernel-devel-2.6.9-42.EL
kernel-2.6.9-11.EL
[root@dbnode1 RPMS]# cd /lib/modules
[root@dbnode1 modules]# ls -lrt
total 48
drwxr-xr-x 2 root root 4096 Aug 18 01:07 kabi-4.0-0
drwxr-xr-x 3 root root 4096 Aug 19 14:42 2.6.9-11.EL
drwxr-xr-x 3 root root 4096 Sep 6 12:48 2.6.9-42.EL
drwxr-xr-x 3 root root 4096 Sep 6 12:48 2.6.9-22.ELsmp
drwxr-xr-x 3 root root 4096 Sep 6 14:19 2.6.9-42.0.2.EL
drwxr-xr-x 3 root root 4096 Sep 11 16:55 2.6.9-22.EL
[root@dbnode1 modules]#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 03:42 AM
09-11-2006 03:42 AM
Re: redhat cluster suite installation.
rpm -Uvh *.rpm --nodeps
In this way, you will install the packages wihtout checking dependencies, as you do have the files needed but the package is not in the database.
Just ensure that all other dependencies are meet. Normally, all dependencies needed are displayed in the rpm command, so --nodeps should be safe.