- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- LVM problem in MC/SG env
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
06-22-2002 07:55 AM
06-22-2002 07:55 AM
LVM problem in MC/SG env
We have 4 HP-UX 10.20 K-class servers in an MC/SG cluster. On which one sybase server is running as a package. I saw a strange error today:
-------------------------------------------
Jun 22 05:50:57 - "sys1": Activating volume group vg01 with exclusive option.
Cannot lock "/etc/lvmconf//lvm_lock" still trying ...Activated volume group in E
xclusive Mode.
Volume group "vg01" has been successfully changed.
-------------------------------------------
Above error displayed in package log when Sybase server(package) trying to come up on alternate node and was bouncing.
Can anybody tell me what that error represents?.
Is it anyway related to why package not coming up properly?.
What is /etc/lvmconf/lvm_lock file?.
Thanks in advance.
Cheers...
Satish.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2002 07:56 AM
06-22-2002 07:56 AM
Re: LVM problem in MC/SG env
Cheers...
Satish.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2002 08:16 AM
06-22-2002 08:16 AM
Re: LVM problem in MC/SG env
This is not an error. The lvm_lock file is used by LVM commands to ensure that only one update can occur at once, thus preventing possible corruption.
When your package start script attempted to activate vg01, another LVM command was already running. When this finished, vgchange acquired the lock and completed successfully.
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2002 07:19 AM
06-23-2002 07:19 AM
Re: LVM problem in MC/SG env
I also agree with Palmer..
Regards,
AR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2002 08:25 AM
06-23-2002 08:25 AM
Re: LVM problem in MC/SG env
The lvmrc starts VG's at start up. make sure it does not start all VG's by default and that vg01 is not among the ones it does.
the
Otherwise I agree with above.
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2002 04:16 AM
06-24-2002 04:16 AM
Re: LVM problem in MC/SG env
steve ^_^
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2002 05:27 AM
06-24-2002 05:27 AM
Re: LVM problem in MC/SG env
The error message is seen when trying to activate a vg or run a vg command while another configuration related vg command is being run. For eg, say there was a disk problem or a problem with the mirror and a vgsync (rebuild mirror) is in progress. At the same time if a vgchange command is executed for this vg. you'll find the error
"/etc/lvmconf/lvm_lock" still trying.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2002 06:38 AM
06-24-2002 06:38 AM
Re: LVM problem in MC/SG env
LVM configuration change commands like lvremove, lvcreate, vgchange, vgsync etc keep a lock file until the completion of their execution to ensure the integrity by not allowing another command to run. Sometimes, hardware failures may cause these commands to execute for a long time. If you get this error try to see if there are any commands running by grepping for lv or vg.
-Sri