[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] Chillisoft - What is this



On 9 Jul 2002 at 22:11, Revd leonard payne wrote:

> I dont use the Chillisoft ASP package and in Control Panels I thought
> I turned it off. After Installing Mysql today, I now have the flwg
> after ps -ax
> 
<snip>
> 
> Whats all this then ??

That is chilisoft running.

There are several ways to turn it off,

This stops the asp admin service:

/etc/rc.d/init.d/asp-admin-5100 stop

This stops the chilisoft engine:

/etc/rc.d/init.d/asp-apache-3000 stop


To stop it coming back again after a reboot, you will after turn of its startup script.

First of all you have to find out which run level you are on, so execute the follwing 
command:

/sbin/runlevel

gives on my system:  N 3

This means we are on run level 3. (The N is the previous run level - which is 
unknown.)

Change to the follwowing directory:

cd /etc/rc.d/

Get a listing:

ls -l

drwxr-xr-x   2 root     root         1024 Jul  8 12:48 init.d
< snip >
drwxr-xr-x   2 root     root         1024 Jul 16  2002 rc0.d
drwxr-xr-x   2 root     root         1024 Jul 16  2002 rc1.d
drwxr-xr-x   2 root     root         1024 Jul  8 12:48 rc2.d
drwxr-xr-x   2 root     root         1024 Jul  8 15:15 rc3.d
drwxr-xr-x   2 root     root         1024 Jul  8 15:15 rc4.d
drwxr-xr-x   2 root     root         1024 Jul  8 15:15 rc5.d
drwxr-xr-x   2 root     root         1024 Jul 16  2002 rc6.d
drwxr-xr-x   2 root     root         1024 Jul 16  2002 rcN.d

Change to the directory with your runlevel: (rc<run level>.d)

cd rc3.d

This directory will contain lots of entries  which begin with either a 'K' or an 'S'.
When the system starts it goes through this directory and ether Kills or Starts the 
script linked to these files.

So in your case look for some entries like:

S87asp-admin-5100
S86asp-apache-3000

The actual numbers after the 'S' may vary.  

To make sure these don't start at the next reboot, rename them:

mv S87asp-admin-5100 K87asp-admin-5100
mv S86asp-apache-3000 K86asp-apache-3000


That should do it.

Regards

Ian
--