[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] EMERGENCY
- Subject: Re: [cobalt-users] EMERGENCY
- From: Jeff Bilicki <jeff@xxxxxxxxxxx>
- Date: Tue Jan 9 15:31:31 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
> We did the same thing when we moved some sites using the CMU. We had to have
> our colo do a reboot. Why does cobalt tell us to issue the command 'kill
> head -1 /var/run/sendmail.pid' if it kills the RaQ?
I the command is supposed to be:
kill `head -1 /var/run/sendmail.pid`
The back ticks are pretty important. The -1 is an argument to head, not kill,
I will see what I can do about getting the docs changed. To read this
command properly, the output of head -1 /var/run/sendmail.pid (which should be
the pid of sendmail) is sent to the kill command.
Jeff-