Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Jan 1999 11:41:32 -0600
From:      Michael Maxwell <drwho@xnet.com>
To:        <freebsd-questions@FreeBSD.ORG>
Subject:   Re: Sendmail Security - URGENT
Message-ID:  <19990105114132.B23289@drwho.xnet.com>
In-Reply-To: <022601be381b$0ff5ec00$944845d1@Samantha.mi.verio.net>; from Damon Hammis on Mon, Jan 04, 1999 at 02:47:28PM -0500
References:  <022601be381b$0ff5ec00$944845d1@Samantha.mi.verio.net>

next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, Jan 04, 1999 at 02:47:28PM -0500, Damon Hammis wrote:
> killall -9 sendmail

Unless there's a real emergency of some sort, you don't just "kill -9"
every process you see.  The *proper* way to shutdown sendmail, and this
is the method given in the sendmail documentation, is to use the pid
file (for convenience) and send it a TERM signal:

  kill -TERM `head -1 /var/run/sendmail.pid`

kill -9 could cause corrupted mail files, loss of email, etc...  Should be
used in extreme cases only.


-- 
drwho @ xnet.com, BOFH  --   http://www.xnet.com/~drwho/
"User Error: replace user and reboot."

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19990105114132.B23289>