- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: redhat cluster suite
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-06-2006 12:12 AM
09-06-2006 12:12 AM
('/lib/modules/2.6.9-22.EL', None)
('/lib/modules/2.6.9-22.EL', None)
I guess installing the kernel-2.6.9-22.EL.ia64.rpm should fix the problem (or am i missing a point?) but I dont find this patch anymore downloadable. Anyone has any clue whats happening ? Please help.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2006 02:43 AM
09-06-2006 02:43 AM
Re: redhat cluster suite
If you want to know that are the dependencies for a package use:
rpm -R package.rpm
All dependencies will be listed and you can download them if you don't already have them.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2006 02:46 AM
09-06-2006 02:46 AM
Re: redhat cluster suite
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2006 02:47 AM
09-06-2006 02:47 AM
Re: redhat cluster suite
https://rhn.redhat.com/errata/RHSA-2005-514.html
The package was replaced by kernel-2.6.9-42.0.2.EL. This could be a problem if you cannot find an updated version of cluster suite.
What I did last time is:
Download the latest kernel source. Modify the Makefile to name the kernel as the cluster suite packages want. Then install cluster-suite using --nodeps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2006 02:54 AM
09-06-2006 02:54 AM
Re: redhat cluster suite
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2006 02:54 AM
09-06-2006 02:54 AM
Re: redhat cluster suite
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2006 03:24 AM
09-06-2006 03:24 AM
Re: redhat cluster suite
Lets download the Red Hat Cluster suite to a directory /tmp/rhcs
Lets say the name is rhcs.iso, use the actual name below
Download the iso there and then begin
mkdir /rhcs
mount -o loop /tmp/rhcs/rhcs.iso /rhcs
cd /rhcs
Move down until you find the directory with the rpms.
rpm -ivh *.rpm
You will probably be prompted for the hugemem kernel. Download that into the same directory and re-run the rpm command.
Now RHCS is installed and you are ready to configure it.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2006 03:33 AM
09-06-2006 03:33 AM
SolutionT
his writes the RPM contents into usr/src/redhat/SOURCES and /usr/src/redhat/SPECS.
Prepare the kernel sources using the commands:
# cd /usr/src/redhat/SPECS
# rpmbuild -bp --target $(arch) kernel.spec
The kernel source tree will be located in the /usr/src/redhat/BUILD/kernel-
/usr/src tree; while not strictly necessary, we suggest that you do this to match the generally-available documentation.
# cd /usr/src/redhat/BUILD/kernel-
# mv linux-
# cd /usr/src
# ln -s ./linux-
# cd /usr/src/linux
# cd /usr/src/linux
# make mrproper
Copy your current config file:
#cp /boot/config-
Edit the Makefile and change the VERSION, PATHLEVEL, SUBLEVEL, EXTRAVERSION to match the one requiered for the cluster suite package. For example:
VERSION=2
PATCHLEVEL=6
SUBLEVEL=9
EXTRAVERSION=-22.EL
Configure the kernel options (Optional)
# make menuconfig
If you don't want to configure the kernel options just run:
# make oldconfig
Build the kernel and modules
make dep clean bzImage modules modules_install
Install the kernel
make install
reboot and ensure that you boot with the new kernel.
The first time this won't be easy.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2006 08:06 PM
09-09-2006 08:06 PM
Re: redhat cluster suite
. in /boot i have list of kernel files including config-2.6.9-42.0.2.EL.
Where is the make file located ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2006 11:51 PM
09-09-2006 11:51 PM
Re: redhat cluster suite
# cd /usr/src/redhat/BUILD/kernel-
# mv linux-
# cd /usr/src
# ln -s ./linux-
# cd /usr/src/linux
# cd /usr/src/linux
# make mrproper
According to this you should look for a MAKEFILE in /usr/src/linux.
while /usr/bin/make is an executable parses MAKEFILE.
BTW, to compile kernel 2.6 you need to run only these commands after editing MAKEFILE:
make all
make modules_install
make install
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2006 12:03 AM
09-10-2006 12:03 AM
Re: redhat cluster suite
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-42.0.2.EL #1 SMP Thu Aug 17 17:39:33 EDT 2006 ia64 ia64 ia64 GNU/Linux
[root@dbnode1 RPMS]#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2006 12:15 AM
09-10-2006 12:15 AM
Re: redhat cluster suite
To see just the version of installed kernel use: uname -r
Did you manage to install the required kernel?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2006 12:20 AM
09-10-2006 12:20 AM
Re: redhat cluster suite
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2006 12:21 AM
09-10-2006 12:21 AM
Re: redhat cluster suite
2.6.9-42.0.2.EL
[root@dbnode1 ~]#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2006 12:23 AM
09-10-2006 12:23 AM
Re: redhat cluster suite
Let us know if it works.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2006 12:31 AM
09-10-2006 12:31 AM
Re: redhat cluster suite
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2006 12:33 AM
09-10-2006 12:33 AM
Re: redhat cluster suite
total 168
-rw-rw-r-- 1 root root 148450 Sep 20 2005 kernel-2.6.spec
-rw-rw-r-- 1 root root 7030 Apr 13 23:21 drbd.spec
[root@dbnode1 SPECS]# pwd
/usr/src/redhat/SPECS
[root@dbnode1 SPECS]#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2006 12:34 AM
09-10-2006 12:34 AM
Re: redhat cluster suite
total 0
[root@dbnode1 kernel-2.6.9]# pwd
/usr/src/redhat/BUILD/kernel-2.6.9
[root@dbnode1 kernel-2.6.9]#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2006 12:48 AM
09-10-2006 12:48 AM
Re: redhat cluster suite
[root@dbnode1 linux]# make all
Makefile:461: .config: No such file or directory
CHK include/linux/version.h
UPD include/linux/version.h
SYMLINK include/asm -> include/asm-ia64
HOSTCC scripts/basic/fixdep
HOSTCC scripts/basic/split-include
HOSTCC scripts/basic/docproc
SHIPPED scripts/kconfig/zconf.tab.h
SHIPPED scripts/kconfig/zconf.tab.c
SHIPPED scripts/kconfig/lex.zconf.c
HOSTCC -fPIC scripts/kconfig/zconf.tab.o
HOSTLLD -shared scripts/kconfig/libkconfig.so
HOSTCC scripts/kconfig/conf.o
HOSTCC scripts/kconfig/mconf.o
HOSTLD scripts/kconfig/conf
scripts/kconfig/conf -s arch/ia64/Kconfig
***
*** You have not yet configured your kernel!
***
*** Please run some configurator (e.g. "make oldconfig" or
*** "make menuconfig" or "make xconfig").
***
make[2]: *** [silentoldconfig] Error 1
make[1]: *** [silentoldconfig] Error 2
make: *** [include/linux/autoconf.h] Error 2
[root@dbnode1 linux]#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2006 12:50 AM
09-10-2006 12:50 AM
Re: redhat cluster suite
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2006 01:53 AM
09-10-2006 01:53 AM
Re: redhat cluster suite
I suggest you to copy the config-2.6.9... file from /boot to /usr/src/linux as .config and to execute make oldconfig.
then retry the make all.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2006 01:54 AM
09-10-2006 01:54 AM
Re: redhat cluster suite
out put of "make all"
LD init/built-in.o
LD .tmp_vmlinux1
kernel/built-in.o(.text+0x2aa22): In function `__exit_signal':
kernel/signal.c:410: undefined reference to `exit_thread_group_keys'
make: *** [.tmp_vmlinux1] Error 1
[root@dbnode2 linux]#
[root@dbnode2 linux]#
[root@dbnode2 linux]# make modules_install
INSTALL arch/ia64/kernel/mca_recovery.ko
cp: cannot stat `arch/ia64/kernel/mca_recovery.ko': No such file or directory
make[1]: *** [arch/ia64/kernel/mca_recovery.ko] Error 1
make: *** [_modinst_] Error 2
[root@dbnode2 linux]#