- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Moving HP Disk System 2100 across Different S...
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-09-2005 06:58 PM
01-09-2005 06:58 PM
Moving HP Disk System 2100 across Different Systems
Every Thing is in whole disk format
Source Machine: -- RX2600
1:- Having Vg00, Vg01 Vg02 & Vg03
2:- Vg00& Vg01 are internal disks
3:-- Vg02 & Vg03 are the part of external Hp disk system 2100.
Query:--- I have to move HP disk system to another system, without loosing the data & volume group vg02 & vg03.
Destination System: - RX4640
1:- Having Vg00, Vg01 Vg02
2:- All are in internal hard disks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2005 07:20 PM
01-09-2005 07:20 PM
Re: Moving HP Disk System 2100 across Different Systems
1. export volume group vg02 and vg03 on rx2600 system don't forget to use -m option to create map file.
2. connect DS2100 to new server.
3. create directory and group file in /dev directory. make sure monor number of group file should be unique. new volume group cn be anme vg03 ad vg4
4. import volume group (vgimport)
5. activate voulme group (vgchange)
6. make appropriate changes in fstab file and
7. mount file systems (mount -a)
Sunil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2005 07:28 PM
01-09-2005 07:28 PM
Re: Moving HP Disk System 2100 across Different Systems
on the rx2600:
check the device minor numbers for your vg group files:
ll /dev/vg02/group /dev/vg03/group
They will probably be 0x020000 and 0x030000 - I will assume they are
unmount all filesystems etc.
vgexport -s -m /tmp/vg02.map /dev/vg02
vgexport -s -m /tmp/vg03.map /dev/vg03
copy the .map files onto your rx4640.
Physically move you ds2100 and chek you can see the disks on the rx46400 using ioscan.
Then on the rx4640:
mkdir /dev/vg03 /dev/vg02
mknod /dev/vg02/group c 64 0x020000
mknod /dev/vg03/group c 64 0x030000
vgimport -s -m /tmp/vg02.map /dev/vg02
vgimport -s -m /tmp/vg03.map /dev/vg03
vgchange -a y vg02
vgchange -a y vg03
vgcfgbackup vg02
vgcfgbackup vg03
create mount points and /etc/fstab entries...
That's pretty much it.
One gotcha though - when creating the group files on your rx4640 using mknod, make sure the device minor numbers you use (0x020000 and 0x030000 in my example) are not already in use. You can check this using:
ll /dev/*/group
If they are in use, just increment - they don't actually need to match what they were on the rx2600 - just be unique.
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2005 08:34 PM
01-09-2005 08:34 PM
Re: Moving HP Disk System 2100 across Different Systems
I have already /dev/vg02 into rx4640
mknod /dev/vg02/group c 64 0x020000 this group file is alrady in use in rx4640 .....
I already written that,
1:- Having Vg00, Vg01 Vg02 is in rx4640...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2005 08:52 PM
01-09-2005 08:52 PM
Re: Moving HP Disk System 2100 across Different Systems
You cannot import the disk system in the same vg names coz its already present in the destination server. Instead you can create folders /dev/vg03 and /dev/vg04 and create group files in thatand then do the import.
=========================================
Assuming that you have a map file of vg02 and vg03 the commands are respectively.
#vgimport -v -m vg02.map /dev/vg03
#vgimport -v -m vg03.map /dev/vg04
=========================================
Now your old vg02 will become vg03 and old vg03 will become vg04 in the new server.
regards,
Syam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2005 08:53 PM
01-09-2005 08:53 PM
Re: Moving HP Disk System 2100 across Different Systems
mkdir /dev/vg04
mknod /dev/vg04/group c 64 0x040000
vgimport -s -m /dev/vg02.map /dev/vg04
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2005 02:06 AM
01-11-2005 02:06 AM
Re: Moving HP Disk System 2100 across Different Systems
Any code on the system that needs the VG name will have to be changed, as well.
Most commonly, this would simply be the 'mount', itself.
So, be sure that /etc/fstab is modified to use the new VG names.
tks
bv
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2005 02:21 AM
01-11-2005 02:21 AM
Re: Moving HP Disk System 2100 across Different Systems
vgexport -v -p -s -m /tmp/vg02.map /dev/vg02
vgexport -v -p -s -m /tmp/vg03.map /dev/vg03
ftp map files to new system as well as copy of /etc/fstab file
Then, umount filesystems, vgchange -a n /dev/vg02 and vg03.
Then move disk subsystem...
On new system, set up new vgs.
say vg12 (for old vg02)
say vg13 (for old vg03)
mkdir /dev/vg12
mknod /dev/vg12/group c 64 0x0c0000
mkdir /dev/vg13
mknod /dev/vg13/group c 64 0x0d0000
If hot swapped the disk sub system:
ioscan -fnC disk
insf -e
vgimport -s -v -m /tmp/vg02.map /dev/vg12
vgimport -s -v -m /tmp/vg03.map /dev/vg13
Update /etc/fstab file, then mount -a
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-11-2005 02:29 AM
01-11-2005 02:29 AM
Re: Moving HP Disk System 2100 across Different Systems
Maybe this link would help,
http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000075725050
the itrc doc id is KBRC00014628.
Hope this helps.
regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2005 04:49 PM
01-27-2005 04:49 PM