- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Ignite Server - Cron
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-22-2003 01:13 PM
01-22-2003 01:13 PM
I have an Ignite - UX / Data Protector (Omniback) server that backs up all of our data. I want to put a cron entry into each of our machines to do a make_net_recovery to that box as well and only keep 1 current archive. And then later on issue a make_tape_recovery on the Ignite Side w/ Omniback shutdown.
So far our total size from the make_net_recovery is about 8GB and our OB2 database is almost 3GB. Using DDS3 tapes I am hoping I will be able to fit all of this on 1 tape.
Thanks!
Eric
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2003 04:17 PM
01-22-2003 04:17 PM
Solution/opt/ignite/bin/make_net_recovery -s myserver -a myserver:/var/images/myclient -v -d "myclient recovery archive" >> /tmp/ignite.log 2>&1
fyi, "myserver" is the ignite server and "myclient" is the ignite client (not real names)
-s indicates the ignite server -a indicates the ignite_server:path where the images are
-v is verbose messaging
-d gives the image a description
We send the output off to a logfile for verification purposes. The script wraps this around some alerting/messaging stuff.
we don't specify the number of archives kept, giving it a default of 2, but if we wanted only one, we'd use -n 1 for a syntax of:
/opt/ignite/bin/make_net_recovery -s myserver -a myserver:/var/images/myclient -v -d "myclient recovery archive" -n 1 >> /tmp/ignite.log 2>&1
We still haven't converted over to make_tape_recovery - still on the old make_recovery, so I don't have the syntax for it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2003 04:48 PM
01-22-2003 04:48 PM
Re: Ignite Server - Cron
# /opt/ignite/bin/make_tape_recovery -a /dev/rmt/0mn -I -v -x inc_entire=vg00
Replace the /dev/rmt/0mn with whatever your appropriate tape drive is.
You MIGHT be able to get all of your stuff on a DDS3, but it'll be close. The make_net_recovery images are already compressed, so they won't change. The OB2 DB and the rest of your VG00 is the question. If I were you, I'd feel more comfortable with a DDS4 (20 GB native), but I don't know if you have the money to spend on one of those.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2003 08:44 AM
01-23-2003 08:44 AM
Re: Ignite Server - Cron
10 pts for both of ya!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2003 08:49 AM
01-23-2003 08:49 AM
Re: Ignite Server - Cron
small point of order,....
ignite 2>&1 >>/tmp/log
The above command will only capture Stdout and Stderr. Ignite will produce error output that is not captured by this method.
ignite 2>&1 | tee -a /tmp/log
The command above will actually capture all output (including all error text) and append it to the file.
Kind of daft that Ignite would not correctly output using stderr, but this has caused me problems in the past!
Share and Enjoy! ian