From owner-freebsd-questions@FreeBSD.ORG Tue Oct 11 08:41:17 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD26616A41F for ; Tue, 11 Oct 2005 08:41:17 +0000 (GMT) (envelope-from dmarshall@gmail.com) Received: from qproxy.gmail.com (qproxy.gmail.com [72.14.204.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4129643D46 for ; Tue, 11 Oct 2005 08:41:17 +0000 (GMT) (envelope-from dmarshall@gmail.com) Received: by qproxy.gmail.com with SMTP id p36so242350qba for ; Tue, 11 Oct 2005 01:41:16 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=ko0O76jVLTUkeriphGazcQQDuzrdE3/xlyvYaCSGhfYojGtzkOOHkf215XtxotMI9mKe2rY0T61yVbiw6C4/EaoL505bxwa6keSwWfcFK9lenyQAuGGvYsJrGVIUUJgR7OFbxsGxLisM4GQEx1k5HFfLSfXKvRH3phQbHmJXEiw= Received: by 10.65.54.8 with SMTP id g8mr495084qbk; Tue, 11 Oct 2005 01:41:16 -0700 (PDT) Received: by 10.65.97.18 with HTTP; Tue, 11 Oct 2005 01:41:16 -0700 (PDT) Message-ID: <53f158630510110141k50281f15o23fa83e70dbb3036@mail.gmail.com> Date: Tue, 11 Oct 2005 01:41:16 -0700 From: David Marshall To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: How to Mount NFS Automatically After Boot-Time? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Oct 2005 08:41:17 -0000 We have several servers that mount from an NFS server for a lot of reading and writing. We typically have this mount listed in /etc/fstab. If one of these servers reboots when the NFS server is offline, it hangs in single-user mode until the NFS server comes back online. We have tried usiing amd(8), but the sorts of traffic we have been generating has been just a little too much for amd to handle.=20 Occasionally it will become overwhelmed and will not work properly until it (amd) is restarted. So, it is back to a straight NFS mount. How can we cause this NFS mount to be made after the system has reached multi-user so that we can log in and perhaps mount from another server? (The servers are in a colo, so it's not easy to gain physical access to the console to operate the machine in single-user.) I've played with putting a mount command into /etc/rc.local, but I don't know whether that would make us equally susceptible to a server outage. TIA!