- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: NFS Mounts Backgrounding
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
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
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
тАО05-17-2005 01:43 AM
тАО05-17-2005 01:43 AM
I am attempting to mount several NFS filesystems on a Fedora Core 2 workstation. The server that is exporting the filesystems is an HP-UX 11.00 system. I went through the motions of adding the workstation in question to the appropriate lines on the server's exports file and then ran the exportfs -a command for the changes to go into effect.
I then modified the fstab file on the workstation and then ran the mount -a command. The following message appeared on screen:
mount: backgrounding "
mount: backgrounding "
I ran the df command and saw the NFS filesystems in question had not been mounted. What else do I need to do to correct this? Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-17-2005 02:57 AM
тАО05-17-2005 02:57 AM
Solutiontail -f /var/adm/syslog/syslog.log
Then do the mount -av on the Linux box. The v gets you verbose output, which may point out a networking issue.
In this case backgrounding probably means the mount is never going to happen, because it should not take very long for an NFS mount.
If there is a configuration issue on the HP-UX side and a connection attempt it will be logged in syslog.
You may need to enhance logging on the hpux machine to get good diagnostics. inetd -l
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
тАО05-17-2005 03:16 AM
тАО05-17-2005 03:16 AM
Re: NFS Mounts Backgrounding
few things to ensure:
* ensure you can mount the share from another machine. simple way to do this to do NFS mount within HP-UX box itself. This will ensure that file system is actually exported
before actually addding it to workstation fstab file, try it manually from command line. see whether it is hanging.
The most likely reason could be that portmap service is not running on ur fedora box. run service portmap start and then try. if it works make sure you enable portmap service to start in system startup
Regards,
Gopi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-17-2005 04:46 AM
тАО05-17-2005 04:46 AM
Re: NFS Mounts Backgrounding
I rechecked the fstab file and I discovered the problem was a typo error on my part. Once I made the correction, the NFS mounts were successfully loaded. Thanks for the help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-18-2005 02:40 AM
тАО05-18-2005 02:40 AM
Re: NFS Mounts Backgrounding
I'm not sure it's a good idea to put NFS mounts in your fstab. I've experienced hangs if the remote NFS server is not up.
I put all my NFS mounts in /etc/auto* files and let automountd handle all the details. That way if the remote server is down, the local server doesn't care.
Just my 2cts,
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-18-2005 04:29 AM
тАО05-18-2005 04:29 AM
Re: NFS Mounts Backgrounding
Thanks for your input. I'll experiment with that approach.