I just went to run cruisecontrol only to find that it's already running when I thought it shut itself down. For some reason I can't find the pid for cruisecontrol with ps -e in order to use kill. How can I kill this?

link|improve this question
Implement ISpeed2 ? – amelvin Apr 13 '10 at 14:51
feedback

migrated from stackoverflow.com Apr 15 '10 at 2:35

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 1 down vote accepted

Looking under /my_install_path/cruisecontrol/ I found the file "cc.pid" which contains the PID that I needed to kill.

$ cat cc.pid
43179
$ kill 43179

or more succinctly

$ kill `cat cc.pid`
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.