cpanel中的php运行方式使用fast-cgi模式的配置方法
# End of autogenerated PHP configuration. 保存好之后,重启apache。 4.由于大量php进程长期占用内存,可以每小时执行一次清空php进程。 crontab -e 把光标弄到最下 0 * * * * ps aux | grep php | egrep -v grep | awk ‘{print $2}’ | xargs kill -9 Ctrl+O保存,Enter,Ctrl+X退出 对于第3步,也另有老外总结出其它方法: 登录 WHM->Apache Configuration->Include Editor->Pre Virtual host Include 特别关注地是: - DefaultMinClassProcessCount 0 (necessary to make Idle timeout work) - ThreadStackSize (default is too high, wastes memory, the setting below is good for most and will save enough memory to allow another php thread!)
|
推荐阅读
-
Windows 8 IIS中配置PHP运行环境的方法
-
PHP swoole中http_server的配置与使用方法实例分析
-
nginx php-fpm环境中chroot功能的配置使用方法
-
yii2中使用Active Record模式的方法_php实例
-
PHP模板引擎Smarty之配置文件在模板变量中的使用方法示例_php实例
-
PHP模板引擎Smarty之配置文件在模板变量中的使用方法示例_php实例
-
Windows 8 IIS中配置PHP运行环境的方法
-
cpanel中的php运行方式使用fast-cgi模式的配置方法
-
PHP模板引擎Smarty之配置文件在模板变量中的使用方法示例,模板smarty
-
yii2中使用Active Record模式的方法,yii2record_PHP教程