Skip to content

Instantly share code, notes, and snippets.

@slav123
Forked from bmichalski/kill-all-php-fpm.sh
Last active April 14, 2021 09:12
Show Gist options
  • Save slav123/c6de4c796709e08e6722d25638219950 to your computer and use it in GitHub Desktop.
Save slav123/c6de4c796709e08e6722d25638219950 to your computer and use it in GitHub Desktop.
Kill all php-fpm processes
sudo kill -9 `sudo ps -ef | grep php-fpm | grep -v grep | awk '{print $2}'`
ps -A | grep php-fpm | awk '{print $1}' | xargs kill -9 $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment