Oh, ok.. Thanks,<br>I have not used automount before.  Would you feel safe mounting a critical directory with it - not necessarily a remote /home directory?<br>The nfs share I have up is holding the config files for a web app.  This was our solution to having to update the config files on several servers in the event that they needed to be edited.  Without it, my test box has a copy of the source on it, but it is plain that this failsafe didn&#39;t work all that well.<br>
<br><div class="gmail_quote">On Thu, Aug 4, 2011 at 12:57 PM, Lightner, Jeff <span dir="ltr">&lt;<a href="mailto:JLightner@water.com">JLightner@water.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">






<div link="blue" vlink="blue" lang="EN-US">
<div>
<p class="MsoNormal"><font color="navy" face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial; color: navy;">Right – Avery’s email was saying you could use automount rather than fstab.  With automount the filesystem doesn’t mount at boot time
 but does mount the first time something tries to use it which should be long after boot.<u></u><u></u></span></font></p>
<p class="MsoNormal"><font color="navy" face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial; color: navy;"><u></u> <u></u></span></font></p>
<p class="MsoNormal"><font color="navy" face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial; color: navy;">Automount also means the filesystem gets unmounted automatically when not in use and remounted when used later.   One nice side to this
 is that if the exporting server goes down and it isn’t currently NFS mounted on your server it doesn’t cause problems like hard NFS mounts do.  
<u></u><u></u></span></font></p>
<p class="MsoNormal"><font color="navy" face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial; color: navy;"><u></u> <u></u></span></font></p>
<div>
<div class="MsoNormal" style="text-align: center;" align="center"><font face="Times New Roman" size="3"><span style="font-size: 12pt;">
<hr size="2" width="100%" align="center">
</span></font></div>
<p class="MsoNormal"><b><font face="Tahoma" size="2"><span style="font-size: 10pt; font-family: Tahoma; font-weight: bold;">From:</span></font></b><font face="Tahoma" size="2"><span style="font-size: 10pt; font-family: Tahoma;"> <a href="mailto:ale-bounces@ale.org" target="_blank">ale-bounces@ale.org</a> [mailto:<a href="mailto:ale-bounces@ale.org" target="_blank">ale-bounces@ale.org</a>]
<b><span style="font-weight: bold;">On Behalf Of </span></b>Wolf Halton<br>
<b><span style="font-weight: bold;">Sent:</span></b> Thursday, August 04, 2011 12:23 PM<br>
<b><span style="font-weight: bold;">To:</span></b> Atlanta Linux Enthusiasts<div><div></div><div class="h5"><br>
<b><span style="font-weight: bold;">Subject:</span></b> Re: [ale] Fstab fails</div></div></span></font><u></u><u></u></p>
</div><div><div></div><div class="h5">
<p class="MsoNormal"><font face="Times New Roman" size="3"><span style="font-size: 12pt;"><u></u> <u></u></span></font></p>
<p><font face="Times New Roman" size="3"><span style="font-size: 12pt;">In my case, the system is coming up but just without the nfs directory  mounted.
<u></u><u></u></span></font></p>
<p><font face="Times New Roman" size="3"><span style="font-size: 12pt;">On Aug 4, 2011 9:03 AM, &quot;Lightner, Jeff&quot; &lt;<a href="mailto:JLightner@water.com" target="_blank">JLightner@water.com</a>&gt; wrote:<br type="attribution">

&gt; Good idea.<br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; ________________________________<br>
&gt; From: <a href="mailto:ale-bounces@ale.org" target="_blank">ale-bounces@ale.org</a> [mailto:<a href="mailto:ale-bounces@ale.org" target="_blank">ale-bounces@ale.org</a>] On Behalf Of Avery Ceo<br>
&gt; Sent: Wednesday, August 03, 2011 7:42 PM<br>
&gt; To: Atlanta Linux Enthusiasts; <a href="mailto:transam@verysecurelinux.com" target="_blank">transam@verysecurelinux.com</a><br>
&gt; Subject: Re: [ale] Fstab fails<br>
&gt; <br>
&gt; <br>
&gt; Have you considered the automounter? By waiting until the first attempt to read a file before mounting the share, you might avoid your startup issue, and you would get remounts after a lost connection for free if there is a network blip.<br>

&gt; On Aug 3, 2011 6:47 PM, &quot;Bob Toxen&quot; &lt;<a href="mailto:transam@verysecurelinux.com" target="_blank">transam@verysecurelinux.com</a>&lt;mailto:<a href="mailto:transam@verysecurelinux.com" target="_blank">transam@verysecurelinux.com</a>&gt;&gt; wrote:<br>

&gt;&gt; This still will hang in startup (though you&#39;ll probably be in<br>
&gt;&gt; multiuser).<br>
&gt;&gt;<br>
&gt;&gt; Specify timeouts in case NFS cannot start, e.g., the server is down.<br>
&gt;&gt;<br>
&gt;&gt; Bob Toxen<br>
&gt;&gt;<br>
&gt;&gt; On Wed, Aug 03, 2011 at 04:21:47PM -0400, Andrew Wade wrote:<br>
&gt;&gt;&gt; With NFS, I set fstab<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; server:/ifs/fs02 /ifs/fs02 nfs bg,noauto,rsize=8192,wsize=8192 0 0<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; *note the noauto, this tells it to not automount. If it tries to automount<br>
&gt;&gt;&gt; and is unable, your server will stall in startup. So you put this entry in<br>
&gt;&gt;&gt; /etc/rc.local:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; mount /ifs/fs02<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Also check to make sure that nfs and portmap services are started upon boot<br>
&gt;&gt;&gt; time.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; That way, the server starts up and then mounts the nfs under rc.local (where<br>
&gt;&gt;&gt; if the nfs share hangs, it would not affect the normal system startup).<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Andrew<br>
&gt;&gt;&gt; RHCE<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Tue, Aug 2, 2011 at 5:50 PM, planas &lt;<a href="mailto:jslozier@gmail.com" target="_blank">jslozier@gmail.com</a>&lt;mailto:<a href="mailto:jslozier@gmail.com" target="_blank">jslozier@gmail.com</a>&gt;&gt; wrote:<br>

&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt; **<br>
&gt;&gt;&gt; &gt; Wolf<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; Could configuration be faulty, I asked about setting an internal ntfs drive<br>
&gt;&gt;&gt; &gt; awhile ago and I got this link from Ubuntu:<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; <a href="https://help.ubuntu.com/community/Fstab" target="_blank">https://help.ubuntu.com/community/Fstab</a><br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; It has links to more network configuration.<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; On Tue, 2011-08-02 at 14:27 -0400, Wolf Halton wrote:<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; Can you think of any reason why fstab would not be read on reboot. Ubuntu<br>
&gt;&gt;&gt; &gt; lucid have an nfs share that was not mounted automagically when I rebooted<br>
&gt;&gt;&gt; &gt; the client machine. Broke a bunch of stuff.<br>
&gt;&gt;&gt; &gt; Wolf<br>
&gt;&gt;&gt; &gt; PS mount -a picked up and mounted the nfs directory.<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt;&gt; &gt; Ale mailing list<br>
&gt;&gt;&gt; &gt; Ale@ale.orghttp://<a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">mail.ale.org/mailman/listinfo/ale</a>&lt;<a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a>&gt;<br>

&gt;&gt;&gt; &gt; See JOBS, ANNOUNCE and SCHOOLS lists athttp://<a href="http://mail.ale.org/mailman/listinfo" target="_blank">mail.ale.org/mailman/listinfo</a>&lt;<a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a>&gt;<br>

&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; --<br>
&gt;&gt;&gt; &gt; Jay Lozier<br>
&gt;&gt;&gt; &gt; <a href="mailto:jslozier@gmail.com" target="_blank">jslozier@gmail.com</a>&lt;mailto:<a href="mailto:jslozier@gmail.com" target="_blank">jslozier@gmail.com</a>&gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt;&gt; &gt; Ale mailing list<br>
&gt;&gt;&gt; &gt; <a href="mailto:Ale@ale.org" target="_blank">Ale@ale.org</a>&lt;mailto:<a href="mailto:Ale@ale.org" target="_blank">Ale@ale.org</a>&gt;<br>
&gt;&gt;&gt; &gt; <a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
&gt;&gt;&gt; &gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>
&gt;&gt;&gt; &gt; <a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; Ale mailing list<br>
&gt;&gt;&gt; <a href="mailto:Ale@ale.org" target="_blank">Ale@ale.org</a>&lt;mailto:<a href="mailto:Ale@ale.org" target="_blank">Ale@ale.org</a>&gt;<br>
&gt;&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
&gt;&gt;&gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>
&gt;&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Ale mailing list<br>
&gt;&gt; <a href="mailto:Ale@ale.org" target="_blank">Ale@ale.org</a>&lt;mailto:<a href="mailto:Ale@ale.org" target="_blank">Ale@ale.org</a>&gt;<br>
&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
&gt;&gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>
&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; Proud partner. Susan G. Komen for the Cure.<br>
&gt; <br>
&gt; Please consider our environment before printing this e-mail or attachments.<br>
&gt; ----------------------------------<br>
&gt; CONFIDENTIALITY NOTICE: This e-mail may contain privileged or confidential information and is for the sole use of the intended recipient(s). If you are not the intended recipient, any disclosure, copying, distribution, or use of the contents of this information
 is prohibited and may be unlawful. If you have received this electronic transmission in error, please reply immediately to the sender that you have received the message in error, and delete it. Thank you.<br>
&gt; ----------------------------------<br>
&gt; <br>
&gt; <u></u><u></u></span></font></p>
</div></div></div>
</div>

<br>_______________________________________________<br>
Ale mailing list<br>
<a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
<a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
See JOBS, ANNOUNCE and SCHOOLS lists at<br>
<a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>This Apt Has Super Cow Powers - <a href="http://sourcefreedom.com">http://sourcefreedom.com</a><br>