- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- USING FBACKUP
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
02-21-2003 03:07 AM
02-21-2003 03:07 AM
USING FBACKUP
We have a HP9000 Server running HP-UX 11 with one oracle 8i enterprise database on it.
We use Fbackup. We schedule a full backup(NFS included) every day.
If I check the log, I get a couple of warnings.
FBACKUP(1102)Warning:Unable to stat file /var/spool/sockets/pwgr/client17922 and /var/stm/logs/sys/activity_log was not succesfully backed up.
Is there also a script available that brings down the database, then begins the backup and finally brings the database back online?
Is there someone out there with a solution?
regards,
Sven Verboort
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2003 03:14 AM
02-21-2003 03:14 AM
Re: USING FBACKUP
The files /var/spool/sockets/pwgr/client17922 and /var/stm/logs/sys/activity_log are open file viz . they are busy files used by pwgrd daemon and stm daemons.
So if you want to get rid of that error , you have to go single user mode and take backup.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2003 03:39 AM
02-21-2003 03:39 AM
Re: USING FBACKUP
I for a long time wrote a script for 2 DB 7.3.4 (APPL and bdifs in a script), but I use it and for 8i. Backup goes on a tape, but you can edit under your needs. Look -probably help You. It is started for each of DB accordingly:
su - ora734 -c "/mmz/usr/bin/copyDB.sh" 1>/mmz/tmp/copyIFS.lst 2>&1 ||{ echo "`date '+%c'` ERROR copy IFS!"; exit; } 1>>/mmz/tmp/copyIFS.lst 2>&1
su - oracle -c "/mmz/usr/bin/copyDB.sh" 1>/mmz/tmp/copyAPPL.lst 2>&1 ||{ echo "`date '+%c'` ERROR copy APPL!"; exit; } 1>>/mmz/tmp/copyAPPL.lst 2>&1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2003 03:41 AM
02-21-2003 03:41 AM
Re: USING FBACKUP
fbackup is designed to take backup while system is active.
to bring the database down and perform backup, you can use a script like:
dbshut normal
fbackup .....
dbstart
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2003 04:47 AM
02-21-2003 04:47 AM
Re: USING FBACKUP
Why do you not exclude boot of them from fbackup command?
Several dirs keeps files for temporaly uses, then when backup start the first thing to do is a index file to make the backup follow this index, so if any file included in this index was deleted meanwhile this index file point is reached a warning message is displayed. Similar case is exposed in http://www4.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000062972954 (a very interesting doc)
To exlude these kind of dirs use "-e" fbackup option, i.e:
fbackup -0 -v -n -i / -e /var/spool/sockets/pwgr -e /var/stm/logs -f /dev/rmt/
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2003 07:03 AM
02-21-2003 07:03 AM
Re: USING FBACKUP
In this case you should not worry. These are files which are open during the backup. In this case the fbackup gets an error. If you want to ignore them pls change your graph file for fbackup.
If you want to backup your DB with fbackuo, simple write a shell script which stops your DB (..like shutdown immediate...) then start your backup. After successful backup start your DB again. Your DB administrator should help you.