- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to remove cluster lock disk information from V...
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
01-04-2010 08:29 AM
01-04-2010 08:29 AM
Does anyone know if I can do that without recreating the VG?
Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2010 08:38 AM
01-04-2010 08:38 AM
Re: How to remove cluster lock disk information from VG
You have to find out if there's data first. What does
pvdisplay -v /dev/dsk/... | more
...say?
Any filesystems written to that disk?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2010 08:45 AM
01-04-2010 08:45 AM
Re: How to remove cluster lock disk information from VG
This is a local disk, right? Not a lun?
If local disk, and nothing else on disk, deactivate and rerun cmquerycl.
cmapplyconf -k -v -C /etc/cmcluster/clust1.config
-k option means only disks in config file will be checked.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2010 09:07 AM
01-04-2010 09:07 AM
Re: How to remove cluster lock disk information from VG
I guess I do not understand what you are suggesting. The question I need answered is if this can be done without affecting data on the VG. This is essentially an exercise right now as I am testing vgversion.
So, I can wipeout the VG to fix the problem, but I need to know if it can be done without affecting data on the disk.
I believe it is what you are calling a "local disk" although it is a SAN lun. But, it is a lock disk, NOT a lock lun.
Also, I am NOT having a problem changing to the quorum server - that is done. The problem is using the vgversion command to try to update the VG to LVM v2.1.
Thanks for your input!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2010 09:33 AM
01-04-2010 09:33 AM
Re: How to remove cluster lock disk information from VG
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2010 04:05 PM
01-04-2010 04:05 PM
Re: How to remove cluster lock disk information from VG
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2010 06:15 PM
01-04-2010 06:15 PM
Solution# lvm11 -a -d /dev/rdsk/c4t0d0 | grep -i lock
/* Alternate block pool length. */ 10708
/* Alternate block pool start. */ 71121280
/* Cluster-lock flags. */ LVM_CLUSTER_LOCK_INITIALIZED
/* Cluster-lock area start. */ 71131988
I tested changing my clusters' arbitration device from this lock disk to a quorum server and cmapplyconf.
# cmapplyconf -f -C CLS.ASC
# cmviewconf | grep -i qs
qs host: qsnode
qs ip address 1: 16.113.15.39
# lvm.11 -a -d /dev/rdsk/c4t0d0 | grep -i lock
/* Alternate block pool length. */ 10708
/* Alternate block pool start. */ 71121280
/* Cluster-lock flags. */ LVM_CLUSTER_LOCK_INITIALIZED
It didn't remove the cluster lock flag from the metadata:
If the /etc/lvmconf/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2010 07:47 AM
01-05-2010 07:47 AM
Re: How to remove cluster lock disk information from VG
Thanks!