From owner-freebsd-current@FreeBSD.ORG Sat Sep 11 23:20:02 2010 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA4471065698 for ; Sat, 11 Sep 2010 23:20:02 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) Received: from esa-annu.mail.uoguelph.ca (esa-annu.mail.uoguelph.ca [131.104.91.36]) by mx1.freebsd.org (Postfix) with ESMTP id 8127B8FC0C for ; Sat, 11 Sep 2010 23:20:02 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ApwEAAari0yDaFvO/2dsb2JhbACDGJ8hrTORIIEigyd0BIog X-IronPort-AV: E=Sophos;i="4.56,353,1280721600"; d="scan'208";a="91549240" Received: from erie.cs.uoguelph.ca (HELO zcs3.mail.uoguelph.ca) ([131.104.91.206]) by esa-annu-pri.mail.uoguelph.ca with ESMTP; 11 Sep 2010 19:20:01 -0400 Received: from zcs3.mail.uoguelph.ca (localhost.localdomain [127.0.0.1]) by zcs3.mail.uoguelph.ca (Postfix) with ESMTP id 927B8B3F36; Sat, 11 Sep 2010 19:20:01 -0400 (EDT) Date: Sat, 11 Sep 2010 19:20:01 -0400 (EDT) From: Rick Macklem To: Tim Kientzle Message-ID: <579405651.776013.1284247201493.JavaMail.root@erie.cs.uoguelph.ca> In-Reply-To: <217AB0A7-0F3E-42EB-8019-9EFCDCBBBB56@kientzle.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Originating-IP: [24.65.230.102] X-Mailer: Zimbra 6.0.7_GA_2476.RHEL4 (ZimbraWebClient - SAF3 (Mac)/6.0.7_GA_2473.RHEL4_64) Cc: freebsd-current@freebsd.org Subject: Re: Experimental NFS server oddity X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Sep 2010 23:20:02 -0000 > I just tried adding > > nfsv4_server_enable="YES" > > to my rc.conf and found that after I rebooted the server, my FreeBSD 8 > client (still using NFSv3) couldn't connect because there was no RPC > mapping for nfs. > > Did you specify both of these in rc.conf? nfs_server_enable="YES" nfsv4_server_enable="YES" You need to specify both of them (and nfsuserd="YES" if you going to use NFSv4). See "man nfsv4" for more. If you did specify both, then do a "ps axHl" to see what didn't start up. There should be: rpcbind mountd nfsd and for NFSv4 to work nfsuserd You can also look in /var/log/messages to see if any of the daemons are complaining about something. rick