- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Cluster configuration collection issues!
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
02-02-2007 05:33 AM
02-02-2007 05:33 AM
Cluster configuration collection issues!
I have a N class server in clsuter. The cluster lock disk. I am trying to collect the cluster information using cmgetconf command. But its gives error:
Unable to find the cluster lock disk.
Is there any way we can get the cluster configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2007 06:13 AM
02-02-2007 06:13 AM
Re: Cluster configuration collection issues!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2007 08:15 AM
02-02-2007 08:15 AM
Re: Cluster configuration collection issues!
Rgds...Geoff
# cat chkclusterlock
#!/bin/sh
#
# script to check for existence of cluster lock
#
# gwild
PATH=/usr/bin:/usr/sbin
if [[ `id -u` != 0 ]]
then
print "\n$0: Must be super-user to run this command."
exit 1
fi
HOST=`hostname`
DEV=`cmviewconf |sed -n -e "/$HOST/{$!N;p;}" -e h | cut -d: -f2 |grep dev|awk -F/ '{print $4}'`
if [ -c /dev/rdsk/$DEV ]
then
SIZE=`diskinfo /dev/rdsk/$DEV | grep size |awk '{print $2}'`
if [ $SIZE = "io_search failed: No match found." ]
then
echo "The disk /dev/rdsk/$DEV does NOT exist on $HOST!!!"
exit 1
fi
echo "The cluster lock disk /dev/rdsk/$DEV on $HOST is $SIZE kbytes."
exit 0
else
echo "/dev/rdsk/$DEV does not exist on $HOST!!!"
exit 1
fi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2007 01:50 PM
02-02-2007 01:50 PM
Re: Cluster configuration collection issues!
Here the cluster lock disk has failed. Before applying new configuration i want to keep a copy of existing one.
Any ideas.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2007 02:04 PM
02-02-2007 02:04 PM
Re: Cluster configuration collection issues!
Ideally down time is required to replace the cluster lock disk and I hope that you have taken vgcfgbackup after cmapplyconf.. else the vg configuration won't have the lock information and it can't be restored after replacing the disk.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2007 03:25 PM
02-02-2007 03:25 PM
Re: Cluster configuration collection issues!
Before replacing the disk i wanted to run a cmgetcong to store the existing copy in a file. But it gives error: unable to open cluser lock disk:
ANy suggestions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2007 04:30 PM
02-02-2007 04:30 PM
Re: Cluster configuration collection issues!
If the disk is hot swappable,you have LVM OLAR patches installed and you have a valid vgcfg backup then this disk can be replaced online and restore the vgcfg after replacement and then take backup.
I don't find any option where we can skip the cluster lock disk and take the cluster configuration backup.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2007 07:42 PM
02-02-2007 07:42 PM
Re: Cluster configuration collection issues!
Can i check the existing cluster configuration details using cmviewcl -v and according to the configuartion can i update a old ascii file and do cmapplyconf.
Please reply asap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2007 08:14 PM
02-02-2007 08:14 PM
Re: Cluster configuration collection issues!
Have you tried running cmscancl ? this will also give you more detailed information about the cluster..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2007 10:09 PM
02-02-2007 10:09 PM
Re: Cluster configuration collection issues!
If so, that shoul dfix your problem without having any issues.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2007 10:52 PM
02-02-2007 10:52 PM
Re: Cluster configuration collection issues!
Here the path to cluster lock disk has failed. So device files are missing.
Whats the best way to solve the issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2007 12:40 PM
02-03-2007 12:40 PM
Re: Cluster configuration collection issues!
Vould you please brief , what do u mean by hardware path is missing:
Is it that hardware path itself is not appearing in ioscan? => need to check the external sotrage/enclosure connected ( there must be a path, however it could be showing NO_HW there).
Is it that device files are not appearing for the disk , however hardware path is there in ioscan? => try running "insf -H < hw path> " this will create the device files for devices connected to the mentioned hw path.