PHP fastCGI won't stop, trying to start PHP fpm

Solution 1:

try killing the service manually

ps aux | grep php

find the PID number, and kill that pid

kill [PID NUMBER]

Then try to start again

sudo /etc/init.d/php-fastcgi start

this work ?