- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- vgremove on a NIKE RAID 5
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
05-02-2002 05:55 AM
05-02-2002 05:55 AM
I did lvremove -f on all lvols, vgreduce on all alternate links, all but the last disk.
Now I know, I missed one disk!
vgremove told me:
Couldn't remove the entry "/dev/vg03" from "./etc/lvmtab".
strings /etc/lvmtab finds only /dev/dsk/c1t3d0 but strings on strings /etc/lvmconf/vg03.conf tells me there is still another disk /dev/rdsk/c0t2d0
How can I cleanup?
Clemens
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2002 05:58 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2002 06:00 AM
05-02-2002 06:00 AM
Re: vgremove on a NIKE RAID 5
You can do a vgexport /dev/vg03
That will get rid of the /dev/vg03 info
Then do a
pvcreate -f /dev/rdsk/c0t2d0
to wipe the LV info on the disk
Then if still in lvmtab do
mv /etc/lvmtab /etc/lvmtab.oldThen do a
vgscan -av
to recreate the /etc/lvmtab
Think that will achieve your goal.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2002 06:03 AM
05-02-2002 06:03 AM
Re: vgremove on a NIKE RAID 5
will do the job here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2002 06:08 AM
05-02-2002 06:08 AM
Re: vgremove on a NIKE RAID 5
2) check if /dev/vg03 is still there. If exists than rm /dev/vg03
ashish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2002 06:08 AM
05-02-2002 06:08 AM
Re: vgremove on a NIKE RAID 5
It will remove vg03 from the system, without modifying the lv info found on the pv.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2002 06:14 AM
05-02-2002 06:14 AM
Re: vgremove on a NIKE RAID 5
This answer was to easy to think about.
I thought I'd learn something about vgcfgrestore... :-)
Clemens