#AddHandler fastcgi-script .fcgi
Your application should now be running using FastCGI
killall -usr1 dispatch.fcgi
ps ux | grep dispatch.fcgi
username PID 0.0 0.9 xxxx xxxx date time /usr/local/bin/ruby dispatch.fcgi
You just need to issue a command
kill -9 PID
PID would be the Process IDentifier ( a numeric value ). You will need to substitute the PID value of the process in the above command.