- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- crontab and make_recovery
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
10-07-2003 12:34 AM
10-07-2003 12:34 AM
Hi,
I want to automatise our backups.
I have created the following, but are not sure if it will work?
0 0 * * 0 /bin/sh -c 'make_recovery -Av'
Regards
Paul
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2003 12:42 AM
10-07-2003 12:42 AM
SolutionYour command should work, I think, but I would suggest you first download the latest version of Ignite from http://www.software.hp.com/products/IUX/index.html and install that. Then change your command to something like this:
0 0 * * 0 /bin/sh -c 'make_tape_recovery -a /dev/rmt/_mn -I -v -x inc_entire=vg00'
Of course you will need to fill in the proper device file for your tape device (make sure you use the no-rewind device!).
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2003 12:47 AM
10-07-2003 12:47 AM
Re: crontab and make_recovery
Hi,
Our supplier wont allow this. Im not allowed to change any software without them telling me to do it.
Thnx for reply, I will test the command..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2003 12:51 AM
10-07-2003 12:51 AM
Re: crontab and make_recovery
Remember that cron commands start up in a very sparse environment. You should give the explicit path to the command - don't assume that the $PATH will be set as you want or even expect. And you really don't *have* to spawn a shell - one will spawned for the command:
0 0 * * 0 /opt/ignite/bin/make_tape_recovery -Ivx inc_entire=vg00
HTH,
Jeff
0 0 * * 0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2003 12:58 AM
10-07-2003 12:58 AM
Re: crontab and make_recovery
00**0 /bin/sh -c 'make_recovery -Av -d dev-name-of-tape' , where dev-name-of-tape is
your unigue dev-file for your tape-device.
You need also to assign '> log'
to the end of this command, becouse
without this all messages,connected with
execution of this command will be written in Mail.
Regards,Stan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2003 06:53 AM
10-09-2003 06:53 AM
Re: crontab and make_recovery
4 4 * * 6 /opt/ignite/bin/make_tape_recovery -I -x inc_entire=vg00 > /var/tmp/make_ignite.log