1827482 Members
2083 Online
109965 Solutions
New Discussion

make_net_recovery

 
SOLVED
Go to solution
Chrisl_2
Frequent Advisor

make_net_recovery

PARISC 11.11 and 11.23

Hi all,

I am trying setup an ignite archive recovery from a client system to a server system that has a tape drive. I used ignite on the server system to setup the client, then went to the client to run the recovery archive. My question is how do I get the client archive onto the server tape drive instead of the server disk drive. I'm thinking that the answer is right in front of me, but I'm blind.

TIA
11 REPLIES 11
Torsten.
Acclaimed Contributor
Solution

Re: make_net_recovery

The archive will be stored on the disk, after this you can store it on the tape.

alternative you can connect the tape drive directly to the system you want to backup and run make_tape_recovery.

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!   
Lynn Hsu_2
Frequent Advisor

Re: make_net_recovery

You also can export the tape drive to the
client. Then use ignite tool "make_tape_recovery". Example:
> make_tape_recovery -x inc_extire=vg00 \
-x exclude /tmp -a remote_host:/dev/rmt/0mn

man page has all the details.

Lynn
Jaime Bolanos Rojas.
Honored Contributor

Re: make_net_recovery

Chris, also this is a really nice page that will be able to answer several how to do questions about a ignite.

http://www.docs.hp.com/en/IUX/faq.html#d0e3715

Regards,

Jaime.
Work hard when the need comes out.
Chrisl_2
Frequent Advisor

Re: make_net_recovery

Lynn,

That sounds like what I want to do. How do I export the server tape drive...add /dev/rmt/0mn to /etc/exports?
Steven E. Protter
Exalted Contributor

Re: make_net_recovery

Shalom,

The OS, with the possible exception of Serviceguard can't share tape devices on remote systems.

You can use make_net_recovery to a shared NFS mount point and then use the machine with the tape drive to back up the make_net_recovery images.

Vertias Netbackup does have expensive ways of making tape drives available remotely but they cost is rather high.

So my scheme works like this.

All the archives reside on a common NFS mount point. The server with the tape drive can back those up by first mounting the nfs mount point and then use fbackup to do the backup.

Works great.

I do not believe Lynn's idea will work.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Torsten.
Acclaimed Contributor

Re: make_net_recovery

The make_tape_recovery option "-a remote_host:/dev/rmt/0mn" sounds really fantastic, but I doubt this works, because ignite is expecting a local tape.

Another question to think about: If you get somehow the archice to a remote tape, how do you want to restore if needed?

Is it a (space) problem to store the archive on the ignite servers disk?

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!   
Chrisl_2
Frequent Advisor

Re: make_net_recovery

Yes, space is the issue. But I guess that I can work something out. I knew exporting the tape drive was too dang good of an idea!!!!
Lynn Hsu_2
Frequent Advisor

Re: make_net_recovery

Chris,
To use remote tape drive (however, the speed will be slow). Steps:

1. you export the device in /etc/exports:
/dev/rmt/0m -rw=host:ip
where host=client host name
and ip = client ip address

> exportfs -av

2. create a /.rhosts file with the client ip in it.

3. on client, try to tar a small file to
the remote tape drive:
> tar -cvf remote_host_ip:/dev/rmt/0m \
/etc/hosts

Let me know if this works. I have done remote fbackup using above method.

Lynn
Torsten.
Acclaimed Contributor

Re: make_net_recovery

@Lynn: Even this is working with fbackup (of course) and tar, it won't work with ignite.
Ignite is not only writing a tar backup.


@thread owner
IMHO, you have to think about to eliminate your disk space limitations, since you can have a simple JBOD (e.g. MSA30) with around 2 Terabytes. One or two new disks will solve your problem too.

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!   
Steven E. Protter
Exalted Contributor

Re: make_net_recovery

Ignite will fail with any variation of Lynn's command. It uses a local device and if you use the Ignite option and try to use a remote tape drive it will fail to detect the drive and fail.

If that procedure tests out with Ignite, I'll happily apologize for my remarks.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Lynn Hsu_2
Frequent Advisor

Re: make_net_recovery

Sorry guys - My way only works for fbackup.
Plus it is "remsh" involved. I tried with
make_tape_recovery, it did not work.

Lynn