- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ignite 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
03-27-2003 05:02 AM
03-27-2003 05:02 AM
Thanks,
Tom
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 05:06 AM
03-27-2003 05:06 AM
Re: ignite backup
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 05:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 05:09 AM
03-27-2003 05:09 AM
Re: ignite backup
I am sure that this command only running by root,because when I was running this command by general user,I got error message from the command like this:
$ ./make_tape_recovery
ERROR: Must have root capability to use make_net_recovery or
make_tape_recovery
$
have a good time!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 05:14 AM
03-27-2003 05:14 AM
Re: ignite backup
I had to try it myself to be sure, but yes, you must be root. You can try the command as a regular user and you'll get an error message.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 05:34 AM
03-27-2003 05:34 AM
Re: ignite backup
There are quite a number of files that are only readable by root, so root is required to do this backup.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2003 06:32 AM
03-27-2003 06:32 AM
Re: ignite backup
#!/usr/bin/sh
/opt/ignite/bin/make_tape_recovery -Av -x inc_entire=vg00
make_recovery is obsolete, and should not be used.
I have this code inserted in a script called /usr/contrib/bin/rec.tape.sh
cron runs it. Every Friday at 2 p.m. we load tapes, and the system takes care of teh rest.
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
03-27-2003 06:46 AM
03-27-2003 06:46 AM
Re: ignite backup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2006 11:24 AM
04-11-2006 11:24 AM
Re: ignite backup
Somebosy has a script it can make automatic logon of root?
I mean, some lines to put in .login to make the su - root "password" and then a shell like a menu and logout at the end.
(su - root "password" doesn't work)
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2006 11:43 AM
04-11-2006 11:43 AM
Re: ignite backup
I got the answer!!!
Create a special user for backup then edit /etc/passwd (vipw) and change "user id UID" to 0 (same as root). Save changes and READY! try again :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2006 01:24 PM
04-11-2006 01:24 PM
Re: ignite backup
You would be better off using a product like sudo.
http://www.courtesan.com/sudo
Sudo allows you to grant normal users certain commands and lets those users run the commands as root, but without knowing the root password.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2006 01:25 PM
04-11-2006 01:25 PM
Re: ignite backup
rm -rf *
will destroy any system when run by root. You don't want operators to run the lengthy make_tape_recovery command since they WILL make a mistake and call you at 3am to ask what to do. To allocate operator privileges, you should install sudo and carefully configure it as to what scripts the operators are allowed to use. An Ignite backup script should first check that there is a writable tape (mt -f /dev/.... status), then run the Ignite process with the -I (interactive restore) and -v (verbose) options. make_tape_recovery makes a log of the backup session.
NOTE: The obsolete make_recovery has very different options. Don't use what know about the old options with the new program. Here's a recommended set:
make_tape_recovery -v -I -a /dev/rmt/0mn -x inc_entire=vg00
Bill Hassell, sysadmin