- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: fbackup using remsh
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-13-2003 01:04 PM
02-13-2003 01:04 PM
fbackup using remsh
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 01:16 PM
02-13-2003 01:16 PM
Re: fbackup using remsh
Take a look at this link,
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x4489402f24d5d61190050090279cd0f9,00.html
Kind regards,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 01:18 PM
02-13-2003 01:18 PM
Re: fbackup using remsh
On systemA
==========
Example of backing up everything in /opt
# cd /opt
# fbackup -f systemB:/dev/rmt/0m -i .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 01:28 PM
02-13-2003 01:28 PM
Re: fbackup using remsh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 01:51 PM
02-13-2003 01:51 PM
Re: fbackup using remsh
How about this one,
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xe4955220af9bd5118ff10090279cd0f9,00.html
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 01:56 PM
02-13-2003 01:56 PM
Re: fbackup using remsh
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xde72972194d6d5118ff40090279cd0f9,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2003 01:41 AM
02-17-2003 01:41 AM
Re: fbackup using remsh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2003 02:11 AM
02-17-2003 02:11 AM
Re: fbackup using remsh
remsh is used on one server to execute a command that exists on the other server. The server in which you wish to execute the command on, must be able to give you access - so for example, if you are on the backup machine, you would put an entry inthe .rhosts file on the client for the backup machine first. Then:
You could do something like this:
On your Backup server, you could create a script:
###############################
#!/usr/bin/sh
Host=clientsvr
ToBackup=`remsh $Host hostname`
remsh $y /home/bin/backup.sh
###############################
This would then execute the script called
/home/bin/backup.sh
Not exactly sure what you are trying to do here, but fbackup is a command that combines the features of dump & ftio and you would use it for example to copy files to tape. So you in your file:
/home/bin/backup.sh
on the clientsvr you could have something like:
###############################
#!/usr/bin/sh
/usr/sbin/fbackup -i /oracle/bkup -f /dev/rmt/0m
###############################
Hope that helps you.
Chuck J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2003 02:14 AM
02-17-2003 02:14 AM
Re: fbackup using remsh
###############################
#!/usr/bin/sh
Host=clientsvr
ToBackup=`remsh $Host hostname`
remsh $ToBackup /home/bin/backup.sh
###############################
Chuck J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2003 03:25 AM
02-17-2003 03:25 AM
Re: fbackup using remsh
It was probably this
Remote backup on a local DAT/DSS tape drive.
In case you would like to make a backup from a remote system to a local
DAT/DSS tape drive, you can use this comand:
remsh remote_name "/etc/fbackup -f local_name:/dev/rmt/0m -i . -0 -v"
remote_name= system that runs the backup.
local_name = system that owns the DAT/DSS drive.
The options can be set at discretion.
If you are logged-in on the other system, then:
/etc/fbackup -f remote_name:/dev/rmt/0m -i . -0 -v
frecover then Restore of backup over network.
Restore from a remote DAT/DDS drive
/etc/frecover -xi/directory -f remote_name:/dev/rmt/0m
Remote restore with local DAT/DDS drive
remsh remote_name " /etc/frecover -xi/directory -f local_name:/dev/rmt/0m"
steve Steel