- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Migrating an FS from one storage to another
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
01-06-2011 05:23 AM
01-06-2011 05:23 AM
Migrating an FS from one storage to another
I am having an HP-UX 11.11 Server.I have one filesystem which need to be increased.This storage in which this particular FS resides in not having any free space.So I need to use new storage.Now my problem is I need to move this FS from old storage to new storage which is having enough free space.How can I able to achieve this.Pls help me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 05:29 AM
01-06-2011 05:29 AM
Re: Migrating an FS from one storage to another
What are you asking here? How to copy, how to create the new FS, what?
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 05:31 AM
01-06-2011 05:31 AM
Re: Migrating an FS from one storage to another
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 05:45 AM
01-06-2011 05:45 AM
Re: Migrating an FS from one storage to another
What kind of storage?
Rgrds,
Rita
..providing all the details first, really helps speed up the process..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 05:48 AM
01-06-2011 05:48 AM
Re: Migrating an FS from one storage to another
existing FS size is 500GB
I will create new 500GB lun in new storage and present it to Server.
create pv.
extend vg
mirror the lv
then break the mirror
and remove the old PV
Can I do it like this.bcos i cant have an option for backing up the data and restoring it.
Pls help me out.If the above process is possible i need the exact steps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 05:51 AM
01-06-2011 05:51 AM
Re: Migrating an FS from one storage to another
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 05:55 AM
01-06-2011 05:55 AM
Re: Migrating an FS from one storage to another
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 06:19 AM
01-06-2011 06:19 AM
Re: Migrating an FS from one storage to another
Don't expand the LUN!
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 06:50 AM
01-06-2011 06:50 AM
Re: Migrating an FS from one storage to another
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 07:19 AM
01-06-2011 07:19 AM
Re: Migrating an FS from one storage to another
But again, you do not need to break the mirror on the LVM side. You just create another couple of LUNs, Do a pvcreate, then vgextend to cover the new LUNs. Then expand your filesystems onto these new devices as you usually do ? It is not a necessity that all your data on any given VG staying on the same device. It is the beauty of LVM.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 08:25 AM
01-06-2011 08:25 AM
Re: Migrating an FS from one storage to another
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 10:31 AM
01-06-2011 10:31 AM
Re: Migrating an FS from one storage to another
Example:
lvreduce -m 0 /dev/vg/lvolx /dev/dsk/c0t0d1 /dev/dsk/c0t0d2 /dev/dsk/c0t0d3
or you can put all your disk info into into a file (diskinfo.file), making sure that all disk is in one continued line and you could run it this way:
lvreduce -m 0 -A n /dev/vg/lvolx `cat diskinfo.file`
Rgrds,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2011 03:35 PM
01-06-2011 03:35 PM
Re: Migrating an FS from one storage to another
1. Add new disks from the new storage array to the volume group.
vgextend vgxx /dev/dsk/cnew
repeat for each disk in new storage array
2. pvmove /dev/dsk/cxtyd0 (old disk storage0
3. vgreduce /dev/dsk/cxtyd0
repeat steps 2 and 3 for each old disk
Now you can extend the lv and filesystem if the new disks were bigger than the old ones.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2011 05:52 AM
01-08-2011 05:52 AM
Re: Migrating an FS from one storage to another
all above querries suffice answer to your querries :)
But what i understand from your query is that your old storage may be EOL & if you are planned to decommission your old storage and also you have extra space requirement on VGs
Then, you can go for creating new filesystem mount it and copy the data from old mount to new mount and remove old vg and LUNS.
instead copy you may go for backup and restore.
Regards,
INH