- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: MC/serviceguard lock device
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-01-2003 04:40 AM
09-01-2003 04:40 AM
The error message I'm recieving when trying to configure lock device is:
"There are no volume group disks that are shared by all nodes in the cluster, hence no cluster lock disk is available
you must have one cluster lock if you have only two nodes in the cluster."
The lock device is located on A SAN storage, Known as /dev/dsk/c9t9d7 (to one machine) and /dev/dsk/c5t9d7 (To the other machine)
I cannot pvdisplay the disks from both of the machines, because its imported only on one of them...
Thanks in advance,
Ayelet
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2003 04:45 AM
09-01-2003 04:45 AM
Solutionjust like the message says, you need at least one shared volume group, to use one of its disk devices as a lock disk.
So why don't you
vgexport -p -s -m /tmp/vgname.map
on the machine where you have the volume group
rcp /tmp/vgname.map other_host:/tmp
and on other_host do
vgimport -s -m /tmp/vgname.tmp
That should solve your problem.
Regards,
Bernhard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2003 04:48 AM
09-01-2003 04:48 AM
Re: MC/serviceguard lock device
mkdir /dev/vg_whatever_name
mknod /dev/vg_whatever_name/group c 64 0x##0000
where ## should be the same as for the vg group file on the other node
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2003 04:50 AM
09-01-2003 04:50 AM
Re: MC/serviceguard lock device
if you created a VG with the disk in the question you need to export the VG then import her in the other node. The VG shoud be shared from the two node.
Enrico.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2003 04:59 AM
09-01-2003 04:59 AM
Re: MC/serviceguard lock device
I have a question, How come i export the VG, and he still acted like it shared on both machines?
Why didn't it remove it from the original machine?
Ayelet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2003 05:01 AM
09-01-2003 05:01 AM
Re: MC/serviceguard lock device
the -p (preview) option in the vgexport command allow it.
Enrico.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2003 05:28 AM
09-01-2003 05:28 AM
Re: MC/serviceguard lock device
the vgexport -p (preview) did not do anything but generate the map file for the vgimport on the other host.
I hope you do NOT use the volume group locally on the machine where it existed before (check /etc/fstab and /etc/lvmrc)
Remember that you should start the cluster daemon and do a vgchange -c y to make the vg cluster aware, if you have not yet done so. From then on you can activate the vg only by
vgchange -a e (exclusive access) which is important for cluster vgs!
Next you should deactivate it on the first node, activate it on the other node where you imported it and do a vgcfgbackup to save the config under /etc/lvmconf.
Regards
Bernhard