- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS Filesystems not automounting on boot
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 03:20 AM
02-13-2003 03:20 AM
There is no message in /etc/rc.log, or /var/adm/syslog/syslog.log. I can mount them manually after the boot quite happily.
Any ideas where to look? Thanks. Ian
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 03:27 AM
02-13-2003 03:27 AM
Re: NFS Filesystems not automounting on boot
Check /sbin/rc2.d/ if nfs client is started after you have to mount your nfs mounts.
Hope it helps,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 03:31 AM
02-13-2003 03:31 AM
Re: NFS Filesystems not automounting on boot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 03:33 AM
02-13-2003 03:33 AM
Re: NFS Filesystems not automounting on boot
if you need the file system to mount automatically then you can configure automount using the /etc/auto_master
and or you can use the /etc/fstab entries with the soft mount option to mount them.
If you had already configured automount then you need to check whether the entries in the /etc/auto_master map for the file systems
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 03:39 AM
02-13-2003 03:39 AM
Re: NFS Filesystems not automounting on boot
/sbin/rc2.d/Sxxxnfs.client is configured, /etc/rc.config.d/nfsconf has NFS_CLIENT=0, and AUTO_MOUNTER=1.
The File Systems are present and correct in /etc/fstab.
The thing that I found disconcerting was that I could mount them manually after booting by specifying the mount command and the destination file system.
eg mount /tmp/filesystem1
As far as I have been aware, simply putting the entry in /etc/fstab will mount the FileSystems upon boot - am I wrong?
Share and Enjoy! Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 04:05 AM
02-13-2003 04:05 AM
Re: NFS Filesystems not automounting on boot
So, I gather that you are trying to use automounter, correct? In that case, any reference to the file system should cause automounter to kick in and do the mount for you. Try, before the filesystem gets mounted, to do a cd to it - i.e. cd /net/joeblowsrvr/filsystem (where '/net' is the mount point configured for automounter, 'joeblowsrvr' is the server name and 'filesystem' is just that). If automounter is functioning properly, the cd should succeed and all the mountpoints from 'joeblowsrvr' should now appear in a bdf command.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 04:18 AM
02-13-2003 04:18 AM
SolutionHere you are using AUTOMOUNT so the entries in the /etc/fstab are not reqd. it just looks at the /etc/auto_master for the mount points.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2003 04:25 AM
02-13-2003 04:25 AM
Re: NFS Filesystems not automounting on boot
Tested on a sandbox, found that when NFS_CLIENT and NFS_SERVER are both set to Zero in /etc/rc.config.d/nfsconf, the filesystem will not automount on boot.
Once I specified one or the other, it comes up fine.
Thanks for the help, gurus. Will get another sandbox and start playing with automounter separately.
Share and Enjoy! Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2003 01:24 AM
02-14-2003 01:24 AM
Re: NFS Filesystems not automounting on boot
If the machine is already running , just change NFS_CLIENT=0 to NFS_CLIENT=1 and run:
/sbin/init.d/nfs.client start
to start the client.
NFS_SERVER=1 in not necessaru if the host in question is only mounting the filesystem and not exporting any.
Hope this explains...