How can I stop WEBrick running as a daemon

Hello!

I’m a newbie linux user and I logged in to my web hosting server and
tested rails.
I ran ‘ruby script/server -d’ (-d means to run as daemon).
Now I don’t know how to stop it.
I don’t have the root’s power.

TIA.

Sam

On 12/23/05, Sam K. [email protected] wrote:

Hello!

I’m a newbie linux user and I logged in to my web hosting server and
tested rails.
I ran ‘ruby script/server -d’ (-d means to run as daemon).
Now I don’t know how to stop it.
I don’t have the root’s power.

You started the process, so you can kill it. If you didn’t start it with
nohup it might have died when you logged out anyhow.

Research ps and kill.

TIA.

Sam K.
escribió:> Sam

$ pidof ruby | xargs kill -9

maybe this helps…