> From: "Bob George" <[EMAIL PROTECTED]>
>
>> Either:
>> ls /etc/init.d
>>
>> or
>>
>> ls /etc/rc.d/init.d
>>
>> Under one of those, you should see a "spamassassin" or "spamd". Then do:
>>
>> /etc/init.d/spamassassin restart
>> (modify based on what you find)
>
> This often works.
>
> "service spamassassin restart"
>
> To make it run properly the spamassassin init script should be in the
> init.d directory, wherever it is. "chkconfig --list spamassassin" should
> show it. "chkconfig spamassassin on" should enable it for every boot.
> The first time start can be "service spamassassin start". The "service"
> script takes care of finding the init script and running it.
>
> {o.o}
>
IMHO this often does not work. "service" ?? "chkconfig" ??, this is rather
distrospecific commands. I have never worked on systems using this commands.
I would use something like:
kill -HUP `ps aux | grep spamd | grep -v grep | awk '{ print $2 }'`
This makes most processes reread their configuration, and should be less
distrospecific.

--
JK


Reply via email to