Created
June 29, 2013 05:18
-
-
Save combatpoodle/5889922 to your computer and use it in GitHub Desktop.
Normalize PHP-FPM CPU affinity Assumes 8 processors, #0 assigned to kernel+nginx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* * * * * root /usr/local/bin/normalize_php_fpm_cpu_affinity.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for i in `ps auxw | grep php-fpm | awk ' { print $2; } '`; do echo $i; taskset -pc 1-7 $i; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment