- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to automate to do system backup in cron job in...
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
09-13-2008 10:59 AM
09-13-2008 10:59 AM
how to automate to do system backup in cron job in ignite server
we have ignite server, and there are 4 servers connected to it. currently we are backing up manually doing make net recovery. how can automate the command inside cron job to take the make_net_recovery for the 4 servers fortnight. would appreciate you can share you experience may be u have the more less like the setup. hope to hear from you. thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2008 01:54 PM
09-13-2008 01:54 PM
Re: how to automate to do system backup in cron job in ignite server
After that create a cronjob on the Ignite server or wherever you want (can be locally) to create make_net_recovery archives.
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2008 11:03 PM
09-13-2008 11:03 PM
Re: how to automate to do system backup in cron job in ignite server
May this link help you.
http://fengnet.com/book/Backup.and.Recovery/I_0596102461_CHP_12_SECT_3.html
Thanks
SKR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2008 11:06 PM
09-13-2008 11:06 PM
Re: how to automate to do system backup in cron job in ignite server
http://www.governmentsecurity.org/articles/articles2/5187-4555.pdf_fl/5187-4555-106.html
Put this entry in the crontab of root of the clients.
make_net_recovery -smyserver-x inc_entire=vg00 -x inc_entire=vg01-x exclude=/depots
Thanks
SKR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2008 01:00 AM
09-14-2008 01:00 AM
Re: how to automate to do system backup in cron job in ignite server
Take your normal make_net_recovery script.
whence make_net_recovery
Modify your script to insure the path of make_net_recovery is on the PATH variable of the script or that it is run directly with full path.
That is all.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2008 11:33 PM
09-14-2008 11:33 PM
Re: how to automate to do system backup in cron job in ignite server
You can add the lines below to your crontab to automate your backup. You can just change to your preferred schedule
30 3 * * 0 /opt/ignite/bin/make_net_recovery -s IGNITE_SERVER -a IGNITE_SERVER:/directory -P s -x inc_entire=vg00 -x exclude=/tmp -x exclude=/var/tmp -d ARCHIVE_NAME -v > /usr/local/logs/ignite.log 2>&1
Regards,
-jef