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

RE: [cobalt-users] How to stop Real server :(



hello,
 
> You can perform both actions with one command. Move to the directory that
> contains the RealServer PID file, and type the following:
> 
> 
> kill `cat pidfile`
> 
> where pidfile is the name of the RealServer PID file, as shown in the
> PIDPath variable
> 
> I tried kill 'cat rmserver.pid' and it doesn't work too.

haven't you noticed de difference between 

kill `cat pidfile`
and
kill 'cat pidfile'

the commande between "acute accent" is executed by the shell,
the second one isn't...

> 
> I get this message
> 
> [root Logs]# kill cat 12031
> kill: No such pid cat
> kill: (12031) - No such pid
> [root Logs]# kill cat rmserver.pid
> kill: No such pid cat
> kill: No such pid rmserver.pid
> [root Logs]# kill 'cat rmserver.pid'

try with :

$ kill `cat rmserver.pid`

hope this help...

fred

>