- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Moving from one EMC frame 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
11-14-2001 09:14 AM
11-14-2001 09:14 AM
Moving from one EMC frame to another.
Thanks in advance,
Ed Johnson - edward.johnson@integris.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2001 09:21 AM
11-14-2001 09:21 AM
Re: Moving from one EMC frame to another.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2001 09:25 AM
11-14-2001 09:25 AM
Re: Moving from one EMC frame to another.
At the source end, you can do a
vgexport -p -v -s -m
(-s includes the VGID in the mapfile)
and then in the destination end(SRDF end), you can do
vgimport -v -s -m
without worrying about the disk paths. The import will scan the disks for the VGID and include them in the VG autmoatically. The import will be relatively slow in this method, if you are not in a hurry, it works fine.
Also, the pv links may not get accurately reflected with the -s option, but when we bring the system up on a SRDF copy or BCV copy, performance is not a critieria.
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2001 09:27 AM
11-14-2001 09:27 AM
Re: Moving from one EMC frame to another.
When you do a vgimport you can define the device file on which this vg is currently sitting.
vgimport -m /tmp/map_name /dev/vg_name /dev/dsk/device_file
Do a "man vgimport" for more help.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2001 09:31 AM
11-14-2001 09:31 AM
Re: Moving from one EMC frame to another.
'vgexport' and 'vgimport' your volume groups. Consider this, using vg02, for example:
# vgchange -a n /dev/vg02
# vgexport -m /tmp/vg02.mapfile -v -f /tmp/vg02.oldpaths /dev/vg02
...then...
# mkdir /dev/vg02
# mknod /dev/vg02/group c 64 0x020000
# vgimport -m /tmp/vg02.mapfile -v -f /tmp/vg02.newpaths /dev/vg02
# vgchange -a y /dev/vg02
You can capture the "oldpaths" when you export the affected volume groups, edit the device declarations to reflect the new devices, name the edited file "newpaths" and import the volume group.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2001 09:33 AM
11-14-2001 09:33 AM
Re: Moving from one EMC frame to another.
I meant to also highlight the idea that you can declare your new devices in the order you want, balanced between channels with the alternate (pv) links established the way you want. "One-Stop-Shopping".
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2001 10:59 AM
11-14-2001 10:59 AM
Re: Moving from one EMC frame to another.
Exporting the VGs on OLD EMC frame and then importing back on new frame with new device files should help.
Use the EMC inq utility to relate device files on new frame.
Thanks.
Prashant.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2001 03:19 AM
11-20-2001 03:19 AM
Re: Moving from one EMC frame to another.
If the two EMC were connected to each other, say R1 and R2(R1 is the source VG). You will need to split the connection on R2 first right? then
command like;
# vgexport -p -m /tmp/vg_mapfile -f /tmp/vg_pvs /dev/vg
Copy mapfiles to R2
# rcp /tmp/vg_mapfile R2:/tmp
# rcp /tmp/vg_pvs R2:/tmp
Then disable the vg on R1
# vgchange -a n /dev/vg
On R2, there might be a difference with controllers, you may edit the PV mapfile, and a command like this;
# mkdir /dev/new_vg
# mknod /dev/new_vg/group c 64 0x??0000
Test it first.
# vgimport -p -m /tmp/vg_mapfile -f /tmp/vg_pvs
# vgchange -a y /dev/vg
NOTE: if your using oracle RAW device you need to change the permissions.
# cd /dev/new_vg
# chown oracle:dba rlv's*
Hope this helps.
joks
On R2