- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Backup
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
11-07-2003 09:40 PM
11-07-2003 09:40 PM
Backup
I have HP UNIX Server rp8400
How I can make backup for the application and database to a tape which command I use?
How I can monitor the sam log. How long the backup process takes?
How I can backup the Unix file system only to the tape?
Thank you all
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2003 10:06 PM
11-07-2003 10:06 PM
Re: Backup
It depends on what you are using to backup your system.If you don't have Omnback installed, you can use the hp-ux backup command to backup and frecover to restore.
just start sam at the command line:
# sam >Backup and Recovery>Interactive Backup and recovery>Hit space bar to select the backup device>Goto actions menu>Backup files interactively> set the options as desired and hit OK..
do man fbackup for more info
for tar, if you don't have the GNU tar it won't backup more than 2GB.
# tar cv * (to backup all files in the current directory)
Good luck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2003 10:07 PM
11-07-2003 10:07 PM
Re: Backup
you can use tar command or fbackup
use "man" for any supplementary informations
(tar, fbackup ,cpio for filesystem
about the database, each database has an utility for backup.
bye
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2003 10:11 PM
11-07-2003 10:11 PM
Re: Backup
The sam log file in /var/sam/log/samlog
The backup process time depends on how much capacity is your backup.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2003 12:00 AM
11-09-2003 12:00 AM
Re: Backup
Om your entire system to backup you kan use this comand.
fbackup -f /dev/rmt/0m -i -v
Note 1. /dev/rmt/0m is je tape_device
To restore your system you can use this command
frecover -f /dev/rmt/0m -rv
Note 2 . all system wil be restored
If you want to resotre single file use:
frecover -f /dev/rmt/0m -i /home/user/test.sh -xv
success
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2003 03:21 AM
11-09-2003 03:21 AM
Re: Backup
You asked for backing up "application and database". Is it an Oracle database (or a similar) ?
Yo should be aware of that Unix tools (as fbackup or tar) is only useful for cold database backups (the database must be shut down first). For hot backups you must use RMAN (Oracle) or another, vendor specific, tool.
You should also consider buying a high end backup software (for example Data Protector) if backing up a such large system as a rp8400.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2003 09:38 PM
11-11-2003 09:38 PM
Re: Backup
You use fbackup to backup of ur application and database. Use the following command
#fbackup -f /dev/rmt/#m -i -g -v <
Noter: This utility support the more than 2 GB file of ur database or any
it's depend on ur backup size and transfer capacity of tape drive
for only unix file system use the IGNITE utility
it will take the take the backup
After installation of ur IGNITE utility use the following command
#/opt/ignite/bin/make_recovery -v -d /dev/rmt#m
# --> is the ur logical no. of ur tape drive
Thanx