From owner-freebsd-current@FreeBSD.ORG Fri Mar 2 23:48:13 2012 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 7799A106564A for ; Fri, 2 Mar 2012 23:48:13 +0000 (UTC) (envelope-from rabgvzr@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id 1AB228FC0C for ; Fri, 2 Mar 2012 23:48:12 +0000 (UTC) Received: by yhgm50 with SMTP id m50so1209306yhg.13 for ; Fri, 02 Mar 2012 15:48:12 -0800 (PST) Received-SPF: pass (google.com: domain of rabgvzr@gmail.com designates 10.236.144.134 as permitted sender) client-ip=10.236.144.134; Authentication-Results: mr.google.com; spf=pass (google.com: domain of rabgvzr@gmail.com designates 10.236.144.134 as permitted sender) smtp.mail=rabgvzr@gmail.com; dkim=pass header.i=rabgvzr@gmail.com Received: from mr.google.com ([10.236.144.134]) by 10.236.144.134 with SMTP id n6mr17051990yhj.50.1330732092452 (num_hops = 1); Fri, 02 Mar 2012 15:48:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=3t/piVSY0Si6A4zHU67644hUnLI1AWOvfyr5bJk29Fw=; b=zfNm28Ghuwqo7abnkSmyb0IxN0BWzY9q9ZJwtYI38oJsig+qCmiN0Q01Cd53CguEWz 79wVwjADff5eS7ljUMf2ep31wiiSU2T66H1DMtp7llC9ZspyVGnjX0X11VxkUBK6ZIMG rQzZO/1gApWlSksdtZaqwUFhqWe85hKw8Eq3jtMbLSdP6nQGSkXxfeXRBL/N+xBGyfRE 8lJSnzv594+/7ZBOlvs3uuoqXlQjdSnQOO7DWpcp2PxsgVS5BpP1bBY6DgZhhHjvM2Xj IBCS/BIyhaKVKYL+nScVM5VBnN0AtOB+Ufr7Np2fBNP8Qe3211OXlvEHQECT6os13+UY wbeA== MIME-Version: 1.0 Received: by 10.236.144.134 with SMTP id n6mr13506407yhj.50.1330732092400; Fri, 02 Mar 2012 15:48:12 -0800 (PST) Received: by 10.236.144.130 with HTTP; Fri, 2 Mar 2012 15:48:12 -0800 (PST) In-Reply-To: <20120302231645.GA65949@in-addr.com> References: <20120302231645.GA65949@in-addr.com> Date: Fri, 2 Mar 2012 18:48:12 -0500 Message-ID: From: Rotate 13 To: freebsd-current@freebsd.org Content-Type: text/plain; charset=UTF-8 Cc: Gary Palmer Subject: Re: src.conf ignored; phantom named 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: Fri, 02 Mar 2012 23:48:13 -0000 On Fri, 02 Mar 2012 18:16:45 -0500, Gary Palmer wrote: > Does the datestamp on /usr/sbin/named reflect when you built the world > or could named have been left over from a previous install? > > WITHOUT_BIND="yes" doesn't delete named if its already installed (not > sure > if 'make delete-old' cleans it up or not) "stat /usr/sbin/named" leaves me in shame - yes, it is left over from a previous buildworld. (Thanks also to others, whose suggestion of same problem just came in from where I sit.) On to next problem... > As for named running, if you do > > sh /etc/rc.d/named restart > > does it succeed? If so, the 'named_enable="no"' flag must be set wrong. "sh /etc/rc.d/named restart" gives exactly what you would expect ("Cannot `restart` named. Set named_enable to YES..."). > Also check to make sure that its not named from ports or some other > location (e.g. check fstat or lsof or something to make sure its actually > /usr/sbin/named and not from some other location) "fstat | grep /named" returns nothing (!), likewise "fstat | grep /sbin". However: # procstat -b `pgrep named` PID COMM PATH 63121 named /usr/sbin/named 63090 named /usr/sbin/named (I also never used ports BIND.) I would really like to figure this out before I do the necessary work to remove unwanted BIND from the system. Processes running without apparent reason, indicates something else is wrong. Thanks for the help so far. I am continuing to poke the system, just looking for the right tool to find out how this got started (also grepping logs which show start but don't seem to show why).