Check if php-fpm is running

Sometimes php-fpm may refuse to start.

Chances are high that it is already running.

You can see activity on port 9000 using following command (assuming fpm is bind 9000 tcp/ip port)

netstat -an | grep :9000

If you have nmap package installed, you can alternatively use it:

nmap localhost -p 9000