- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- moving data between servers
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
12-21-2004 12:15 AM
12-21-2004 12:15 AM
moving data between servers
I need to make a backup of a vg in node A and activate the snapshoot lvol's in node B.
Could you help me?
thanks in advances
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2004 12:47 AM
12-21-2004 12:47 AM
Re: moving data between servers
Check fbackup / frecover
Or you could vgexport the volumegroup on node A pull out the disks and import it on node B ( vgimport or vgscan command)
Regards,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2004 12:56 AM
12-21-2004 12:56 AM
Re: moving data between servers
it depends which vg you want to backup.
generally you could use make_tape_recovery:
make_tape_recovery -a /dev/rmt/0mn -A -v -x inc_entire=vg01 (will backup vg00 + vg01 on norewind dev, for excluding lvols can use
"-x exclude=PATH option, for test without data writing on tape you can use -p option)
on the target box interrupt boot process and search for boot dev:
sea ipl and boot
boot PATH
rgds Jan
boot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2004 01:04 AM
12-21-2004 01:04 AM
Re: moving data between servers
Is this going to be a permanent copy, one-time temporary image, daily snapshot, etc?
The answers to these questions may help determine what options you have and what would work best.
David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2004 01:05 AM
12-21-2004 01:05 AM
Re: moving data between servers
you could vgexport the volumegroup on node A and import it on node B :
ON Node A :
umount /fsxx
vgchange -a n vg01
vgexport -m /tmp/vg01.map -s vg01
ftp /tmp/vg01.map
On Node B :
mknod /dev/vg01/group -c 64 0x010000
vgimport -m /tmp/vg01.map -s vg01
vgchange -a y vgxx
modify /etc/fstab
mount -a
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2004 01:29 AM
12-21-2004 01:29 AM
Re: moving data between servers
cd $sourcedir
find . -xdev -depth | cpio -ocax | \
remsh $destcpu "cd $destdir ; cpio -icduxm"
where: sourcedir and destdir both exist.
2. Both servers are connected at 1000 BT Full Duplex. GigE switch, copper.
3. EMC disks. 1 GB/s switch.
4. Timing:
a. A single copy copies at the rate of 19 GB/hr.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2004 01:55 AM
12-21-2004 01:55 AM
Re: moving data between servers
node A:
vg01 in disks of nike FC30 Galaxy
node B:
vg01 in disks of IBM 2105F20
The task is connect disk of IBM 2105F20 at node A, mirroring vg01, disconect disks of node A, conect disks at node B and active the vg01.
node A will be backup of node B, node B will be in production.
best regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2004 03:26 AM
12-29-2004 03:26 AM
Re: moving data between servers
Use 'vgcfgbackup' & 'vgcfgrestore'. See the man page for details option.
Hope this information can help you.
Merry Xmas & Happy New Year.
Best Regards,
AW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2009 02:20 AM
07-14-2009 02:20 AM
Re: moving data between servers
this thread is old