- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- backup software
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
08-14-2000 11:07 AM
08-14-2000 11:07 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 11:12 AM
08-14-2000 11:12 AM
Re: backup software
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 11:17 AM
08-14-2000 11:17 AM
Re: backup software
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 11:19 AM
08-14-2000 11:19 AM
Re: backup software
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 11:22 AM
08-14-2000 11:22 AM
Re: backup software
I use fbackup/frecover scripted to my own tastes for routine as well as ad hoc backups. The graph file that drives it use is very nice. The ability to create a text file from a tape directory and then edit it for use by frecover is but one nice feature. You might (re)consider looking at fbackup for your own use.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 11:28 AM
08-14-2000 11:28 AM
Re: backup software
If you are looking for a package, if not, UNIX has numerous utilities included.
tar, cpio, dump, etc. fbackup is HP-UX tool so a restore could only be done on HP-UX. Some of the utilities are independent of flavor.
tar is not really a good back-up utility for large amounts of data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 12:12 PM
08-14-2000 12:12 PM
Re: backup software
Both operate on a single filesystem and you would have to write a script to control them.
I have done several disaster recovery tests and not had a problem.
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 12:14 PM
08-14-2000 12:14 PM
SolutionFor instance, the classic Unix utilities: cpio, tar, pax, dump were OK in the days when disks were a few dozen megs in size. But now, backups are measured in Gigabytes and both files and filesystems have long sinc left the realm of 32-bit addressing (ie, 2 Gbytes max filesize). For classic tools, they cannot backup these large files for if they could, their internal format would have to be altered, thus violating legacy Unix standards.
True, there are GNU backup utils that handle these tasks, but there are more practical matters such as reliability and error recovery. cpio/tar/pax/dump all share the classic (but archaic) method for indexes: (none). This means that to determine what is actually on the tape, you must read the *entire* tape as in: tar -tvf /dev/rmt/0m
NOTE: Ignite/UX is a great system recovery and cloning tool. It is *not* a restore tool. It is designed to recreate /vg00 (the root volume group) should something bad happen to the root disk, but unless you customize the inventory scripts, other disks are not part of the Ignite tape. And the Ignite tape is not usable as a selective recovery method, ie, recovering a single file is not possible.
Commercial grade backup utils will instead create a complete backup list (index of files and directories) including high speed retrieval codes and multi-volume markers for fast restores. fbackup does this with DDS tapes as an example. This backup list also includes reel volume information which means that to restore a file (or files), you just put the last reel in the drive and in less than a minute, the recovery software will tell you which reel to insert.
Then recovery will space through the tape at ultra highspeed looking for setmarks or EOF markers which are recorded at regular intervals. This, a 200 Gbytes backup onto 8 reels of tape will require less than 20 minutes to restore any file.
Another characteristic is error recovery. tar/cpio/pax/dump see a tape error nad report: errno 5 (I/O error) and terminate immediately (that's not good). Commercial programs will begin an error recovery process to geet past the bad spot (if truly unrecoverable) and resync so as to salvage whatever is left on the tape.
And speaking of Gigabytes, it seems that GB of data goes hand in hand with 24x7 operation which leaves little or no time to perform the backup. Commercial products such as Omniback, HiComp's HiBack, Legato and Veritas programs, all allow parallel tape backup whereby multiple tape drives can send the data files in parallel to multiple drives and decreasing the total backup time. This is done with multiple tape drives.
So choose your backup method using the percentage method, like insurance. If your data is worth one million dollars (the cost to replace the data if it cannot be recovered), then 1% is probably a reasonable protection factor to spend on insuring the data ($10,000). While this may seem high, 'hoping' the data is backed up reliably is *not* a way to guarentee a long future in sysadmin. On the other hand, if the data is not important, classic Unix tools will work most of the time.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 03:11 PM
08-14-2000 03:11 PM
Re: backup software
Good Luck...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2000 06:16 PM
08-14-2000 06:16 PM
Re: backup software
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2000 06:41 AM
08-15-2000 06:41 AM
Re: backup software
Thanks so much for your comments on backup, I sent that directly to my boss and above. That was my point exactly.
Carol
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2000 08:22 AM
08-15-2000 08:22 AM
Re: backup software
Your statement
".. the Ignite tape is not usable as a selective recovery method, ie, recovering a single file is not possible."
is not entirely correct. Individual files can be restored. They're archived using pax and can be restored with same or tar. I've done it before and it can be very valuable at times.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2000 09:01 AM
08-15-2000 09:01 AM
Re: backup software
Although it is possible to recover an individual file with Ignite, it is certainly not what the utility is designed for. In a previous shop, some people thought it might be a good idea to eliminate system level backups (with fbackup) for vg00 where Ignite was being periodically performed as well. The vast amount of failures involve some sort of human error with either corrupting or deleting a file or group of files. Fbackup and the other backup third party solutions mentioned are far more adept at doing this in a lot less time.
For Carol:
Many shops are using backup startegies that are more global in scope. They are using both hardware (tape towers, etc) and software that encompases all of their servers into a more heterogenious methodology. This streamlines things for all groups involved and usually saves money from the hardware end too. It is great for data level backups. It is not a complete replacement for system level backups, but fbackup and the existing internal tape drives are more than adequate for the system level. Duplicating some key files into the daily data backup (like /etc) will reduce the need of doing system level stuff on a daily basis.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2000 09:16 AM
08-15-2000 09:16 AM
Re: backup software
Then you could look at Tivoli/adsm, it works quite well...
Regards
Victor