- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: fbackup with NFS
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
07-12-2001 12:36 PM
07-12-2001 12:36 PM
fbackup with NFS
I started receiving several of the following messages from fbackup:
fbackup(1513): statcall failed in dotdotnotparent
fbackup(1507): WARNING: could not chdir to
Any ideas as to what might have happened or changed that would cause this?
Thanks!
Brian
- Tags:
- fbackup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2001 04:57 PM
07-12-2001 04:57 PM
Re: fbackup with NFS
However, I would never use NFS with fbackup. NFS is not only very slow (especially for backups) but also unreliable, especially when the network is unprotected (ie, PC's connected to it). fbackup and frecover have remote magtape capability which is more reliable and much less network overhead. Check the man page for fbackup about the -f remote-tape capability.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2001 02:22 AM
07-13-2001 02:22 AM
Re: fbackup with NFS
Be aware of security problems when using .rhosts: This file must be readable only by the file owner (no other flags for anybody else). It should always be empty if you don't need it. If you need it you should only allow remote execution for a distinct user coming from a distinct node.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2001 02:33 AM
07-13-2001 02:33 AM
Re: fbackup with NFS
Hi
U have been doing backup for some time..Now suddenly it stoped..right. It should be some configuration problem. So please checkup the related files.
Please checkup /etc/exports and /.rhosts files in the remote system and if rqd restart the nfs server in the remote system by typing
#/sbin/init.d/nfs.server stop
#/sbin/init.d/nfs.server start
From ur local system, Please checkup whether U are able to go to the particular directory which U want to take backup or not.
If rqd please restart the nfs client here by typing
#/sbin/init.d/nfs.client stop
#/sbin/init.d/nfs.client start
Best of luck
Shahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2001 05:34 AM
07-16-2001 05:34 AM
Re: fbackup with NFS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2001 01:01 PM
07-20-2001 01:01 PM
Re: fbackup with NFS
fbackup (running on the NFS client) can access some of the directories on the NFS server but not all. It looks like (at least some of) the ones that it can't access have no permission to "others" (e.g. drwxr-x---) Shouldn't "root" still have access to these?
Can fbackup do multiple volumes on 1 tape? i.e. can I do use fbackup on what currently is the NFS client, not rewind the tape, and then do a remote backup from what is currently the NFS server to the tape on the (current) NFS client - so that both backups are on 1 tape. That's really what I'm trying to accomplish - I want both file systems backed up on the same tape.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2001 10:46 PM
07-20-2001 10:46 PM
Re: fbackup with NFS
I hope U are a user with supervisor privilage. Can U send the content of ur /etc/exports file?
Shahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2001 03:11 AM
07-21-2001 03:11 AM
Re: fbackup with NFS
As far as backing up a remote NFS filesystem and the local filesystem, it is just another filesystem to the local computer, except you must tell fbackup to allow NFS filesystems to be backed up.
If you use the remote magtape capability, then you will need 2 tapes. It is not a good idea at all to try to append multiple backups on one tape and fbackup forbids this as it requires a complete table of contents at the beginning of the tape (like all commercial quality backup programs).
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2001 12:52 PM
07-23-2001 12:52 PM
Re: fbackup with NFS
/ -root=NFSCLIENT,access=NFSCLIENT
/stand -root=NFSCLIENT,access=NFSCLIENT
/opt -root=NFSCLIENT,access=NFSCLIENT
/usr -root=NFSCLIENT,access=NFSCLIENT
/var -root=NFSCLIENT,access=NFSCLIENT
/users -root=NFSCLIENT,access=NFSCLIENT
From my understanding, this says that only root on NFSCLIENT can access the NFS server (and yes I'm the only one with root access on both machines).
Bill, when you say that "ALL of this is unnecessary if you use .rhosts..." - do you mean that the /etc/exports file is unnecessary if I have a .rhosts file or do you mean something else?
Thanks again! Brian