From owner-freebsd-questions Mon Jan 5 17:32:22 1998 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA08103 for questions-outgoing; Mon, 5 Jan 1998 17:32:22 -0800 (PST) (envelope-from owner-freebsd-questions) Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id RAA08089 for ; Mon, 5 Jan 1998 17:32:14 -0800 (PST) (envelope-from grog@lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.8.7/8.8.5) with ESMTP id MAA23599; Tue, 6 Jan 1998 12:01:28 +1030 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.8.8/8.8.7) id MAA16163; Tue, 6 Jan 1998 12:01:28 +1030 (CST) (envelope-from grog) Message-ID: <19980106120127.48735@lemis.com> Date: Tue, 6 Jan 1998 12:01:27 +1030 From: Greg Lehey To: xander@agizubna.relcom.ru Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Please help! References: <34B13E2C.7F0C@agizubna.relcom.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.84e In-Reply-To: <34B13E2C.7F0C@agizubna.relcom.ru>; from XaN on Mon, Jan 05, 1998 at 11:10:20PM +0300 Organisation: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 WWW-Home-Page: http://www.lemis.com/~grog Sender: owner-freebsd-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Mon, Jan 05, 1998 at 11:10:20PM +0300, XaN wrote: > Hello! > > I have found the following lines which repeat many times (up to hundred) > in /var/log/messages files at my FreeBSD computer: > > Jan 5 21:50:23 pref inetd[3009]: cannot execute /usr/local/sbin/identd: > No such file or directory > Jan 5 21:50:23 pref inetd[107]: /usr/local/sbin/identd[3009]: exit > status 0x4700 > > What does it mean? It's saying: /usr/local/sbin/identd: No such file or directory inetd is trying to run it. Do you want to run identd? The closest I can get to that is pidentd in the Ports Collection. If you don't want to run it, find the following line in /etc/inetd.conf: ident stream tcp wait root /usr/local/sbin/identd identd -w -t120 and change it to: # ident stream tcp wait root /usr/local/sbin/identd identd -w -t120 In other words, comment it out. Then send a SIGHUP to inetd: # ps aux | grep inetd root 16150 0.0 0.5 264 460 p5 S+ 12:00PM 0:00.02 grep inetd root 117 0.0 0.1 252 64 ?? Is 26Dec97 0:04.24 inetd ^^^ This one # kill -1 117 That should stop things. Greg