- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- could not remove logical volume
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-04-2006 03:55 AM
10-04-2006 03:55 AM
while giving the following command for removing the logical volume getting the following message:
# lvremove -f /dev/emc4_vg08/S_Pad_log01
lvremove: Couldn't delete logical volume "/dev/emc4_vg08/S_Pad_log01":
The specified logical volume is open.
Volume Group configuration for /dev/emc4_vg08 has been saved in /etc/lvmconf/emc
FYI
this logical volume is used as raw device,there is no file system created on this LV.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2006 03:59 AM
10-04-2006 03:59 AM
Re: could not remove logical volume
have you seen:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=605757
Is there still an application using the volume?
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=950690
Any swap on the device ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2006 03:59 AM
10-04-2006 03:59 AM
Re: could not remove logical volume
# umount /dev/emc4_vg08/S_Pad_log01
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2006 04:01 AM
10-04-2006 04:01 AM
Re: could not remove logical volume
fuser /dev/emc4_vg08/rS_Pad_log01
Otherwise, shutdown the software that may have used this volume.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2006 04:04 AM
10-04-2006 04:04 AM
Re: could not remove logical volume
cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2006 04:13 AM
10-04-2006 04:13 AM
Re: could not remove logical volume
while running the following command,getting the following messages:
umount /dev/emc4_vg08/S_Pad_log01
umount: cannot find /dev/emc4_vg08/S_Pad_log01 in /etc/mnttab
cannot unmount /dev/emc4_vg08/S_Pad_log01
# fuser /dev/emc4_vg08/rS_Pad_log01
/dev/emc4_vg08/rS_Pad_log01: 2356o
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2006 04:17 AM
10-04-2006 04:17 AM
Re: could not remove logical volume
Yang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2006 04:20 AM
10-04-2006 04:20 AM
Solution# fuser /dev/emc4_vg08/rS_Pad_log01
/dev/emc4_vg08/rS_Pad_log01: 2356o
This indicates that process 2356 has the raw device open. You will have to terminate this process; however, this is a very strong indication that the raw device is actually used by an application so exercise great caution before removing this LVOL.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-04-2006 06:07 AM
10-04-2006 06:07 AM
Re: could not remove logical volume
Killing the process is not recommended in my case. So I will ask the application team to stop accessing the volume, and then try to remove the volume.
Thanks for all your help.