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
Discussions
Discussions
Discussions
Forums
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
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
тАО04-23-2008 01:03 AM
тАО04-23-2008 01:03 AM
VGREMOVE
I have one server running HP-UX 11.11. Last one due to some testing purpose, one VG was created consisting 8 PV and 10 LV. total size of the VG is 1.7 TB.
now the testing is over and the same is to be removed. Post that one new VG and LV is to be created but this time the zie of the LV is 250 GB.
Please suggest, whether I should go for vgexport method or vgremove method.
In both the cases Plz provide the steps also.
Thanks & Regards :
Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-23-2008 01:16 AM
тАО04-23-2008 01:16 AM
Re: VGREMOVE
It is better to run "vgexport" rather than removing all LV's,PV's and vgremove.
Do
#vgexport
Then,
CReate your new VG and LV
Best Regards,
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-23-2008 01:43 AM
тАО04-23-2008 01:43 AM
Re: VGREMOVE
you can remove the LV and or you can export the VG.
vgchange -a e /dev/vg-name
lvremove /dev/vg-name/lvname
or
vgexport /dev/vg-name
Thanks & Regards
Aashique
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-23-2008 01:49 AM
тАО04-23-2008 01:49 AM
Re: VGREMOVE
Ramesh is telling right method
run vgexport rather than removing all LV's,PV's and vgremove
#vgexport
then ceate new VG and LV as per your equirement
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-23-2008 01:51 AM
тАО04-23-2008 01:51 AM
Re: VGREMOVE
Ramesh is telling right method
run vgexport rather than removing all LV's,PV's and vgremove
#vgexport
then ceate new VG and LV as per your requirement
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-23-2008 02:00 AM
тАО04-23-2008 02:00 AM
Re: VGREMOVE
vgexport will remove the volume group with one step but without modifying the logical volume information found on the physical volumes.
vgexport OLDVG
Create new VG:
mkdir /dev/VGNAME
mknod /dev/VGNAME/group c 64 0x0?0000 (be careful about the minor no)
pvcreate -f /dev/rdsk/c?t?d?
(remove the old vg info from the disks)
vgcreate VGNAME /dev/dsk/c?t?d?
(choose the correct values for the PE size, etc).
vgchange -ay VGNAME
lvcreate -L 256000 /dev/VGNAME/lvolname
Regards,
Rasheed Tamton.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-23-2008 09:34 AM
тАО04-23-2008 09:34 AM
Re: VGREMOVE
# vgchange -a n volume group(for deactivating volume group)
# vgexport volume group name(for removig volume group)
it will remove u volume group
thanks and regards
Sajjad