From owner-freebsd-questions Tue Sep 23 17:04:08 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id RAA14876 for questions-outgoing; Tue, 23 Sep 1997 17:04:08 -0700 (PDT) Received: from freebie.lemis.com (gregl1.lnk.telstra.net [139.130.136.133]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id RAA14845 for ; Tue, 23 Sep 1997 17:04:00 -0700 (PDT) Received: (from grog@localhost) by freebie.lemis.com (8.8.7/8.8.5) id JAA00171; Wed, 24 Sep 1997 09:33:46 +0930 (CST) Message-ID: <19970924093346.61850@lemis.com> Date: Wed, 24 Sep 1997 09:33:46 +0930 From: Greg Lehey To: Keith Spencer Cc: freebsd-questions@FreeBSD.ORG Subject: Re: syslogd not working! References: <199709230254.MAA22674@smmcroute.smmc.qld.edu.au>; <19970923140754.55015@lemis.com> <199709231949.FAA23848@smmcroute.smmc.qld.edu.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81e In-Reply-To: <199709231949.FAA23848@smmcroute.smmc.qld.edu.au>; from Keith Spencer on Wed, Sep 24, 1997 at 07:04:35AM +1000 Organisation: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8250 Fax: +61-8-8388-8250 Mobile: +61-41-739-7062 WWW-Home-Page: http://www.lemis.com/~grog Fight-Spam-Now: http://www.cauce.org Sender: owner-freebsd-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Wed, Sep 24, 1997 at 07:04:35AM +1000, Keith Spencer wrote: > Hi Greg and all, > >>> at boot the report is...syslogd can't bind to something >>> and says it isn't able to take requests or something. >>> >>> Any clues ? >> >> No, you left them out of the message. What are the somethings? > Fair enough....Here are the errors ? > During boot sequence: > syslog: bind: Can't assign requested address > syslog:child pid 59 exited with return code 1 > ....what does that mean : ^ o ? It means it stopped because of an error. >> Is syslogd running? If it isn't, what happens if you try to start it? >> Greg > .... How do I do that Greg? # syslogd But it will die again. > BTW I notice in rc.conf that there are no syslog flage set...does > this matter? You should have: syslogd_enable="YES" # Run syslog daemon (or NO). syslogd_flags="" # Flags to syslogd (if enabled). Your problem looks like the lack of the file /var/run/log. You should have: # ls -l /var/run/log srw-rw-rw- 1 root bin 0 Sep 19 16:31 /var/run/log If you don't have it, do # mkfifo /var/run/log I'd like to know how you came not to have it, though. Did you move /var? Greg