- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Remove LVOL
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
10-07-2004 06:23 AM
10-07-2004 06:23 AM
I removed a lvol with commands
" umount /dev/vg01/lvol6 "
" lvremove -f /dev/vg01/lvol6 "
When I went to remove from file fstab, there were no entries.
I'am using a cluster, so I think that the LVOL has been mounted by cluster.
How can I remove LVOL from Cluster ?
Do I need remake VGMAP ?
If need, how can remake vgmap ?
Thanks
Daniel Duarte
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2004 06:28 AM
10-07-2004 06:28 AM
Re: Remove LVOL
mv /etc/lvmtab /etc/lvmtab.old
vgscan -a
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2004 06:32 AM
10-07-2004 06:32 AM
SolutionIf /dev/vg01/lvol6 is indeed in cluster - then so is vg01.
Do NOT use vg01 for standard vg - until it is out of cluster.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2004 06:42 AM
10-07-2004 06:42 AM
Re: Remove LVOL
To remove the logical volume from the package control script
# cd /etc/cmcluster
# find . -name "*.cntl" -exec grep -l "/dev/vg01/lvol6" {} \;
Edit the file that is returned as the output from the above command.
You might see something like this
LV[6]=/dev/vg01/lvol6; FS[0]=/pkg1a; FS_MOUNT_OPT[0]="-o rw"
Comment out that entry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2004 06:58 AM
10-07-2004 06:58 AM
Re: Remove LVOL
Do I have just to remove from this file ?
Do I have to remove from the server Standby too ?
When the server reboot, the cluster search this lvol in the file iden.fstab ?
** I have others Lvols in the VG01 **
Daniel Duarte
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2004 06:58 AM
10-07-2004 06:58 AM
Re: Remove LVOL
usually path for this is /etc/cmcluster/
You have to update here.
That shall take care of package startup and thus the mount/umount of FS..etc.
Hope this helps
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2004 07:40 AM
10-07-2004 07:40 AM
Re: Remove LVOL
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2004 08:06 AM
10-07-2004 08:06 AM
Re: Remove LVOL
Looks like your control script has been configured to source this *.fstab file for the logicial volume/mountpoints.
Remove the entry from all the nodes.
You dont have to reboot the system. Whenever the package is started, this file is referred and the logical volumes are mounted.
- Sundar