继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

php-5.5的php-fpm启动脚本

慕田峪9129951
关注TA
已关注
手记 337
粉丝 200
获赞 993

#!/bin/bash # php-fpm startup script for the php-fpm  # php-fpm version:5.5.0-alpha6 # chkconfig: - 85 15 # description: php-fpm is very good # processname: php-fpm # pidfile: /var/run/php-fpm.pid # config: /usr/local/php/etc/php-fpm.conf php_command=/usr/local/php/sbin/php-fomphp_config=/usr/local/php/etc/php-fpm.conf php_pid=/var/run/php-fpm.pid RETVAL=0 prog="php-fpm"#start function php_fpm_start() { /usr/local/php/sbin/php-fpmstart(){ if[ -e $php_pid  ] thenecho"php-fpm already start..."exitfiphp_fpm_start stop(){ if[ -e $php_pid ] thenparent_pid=`cat$php_pid` all_pid=`ps-ef | grepphp-fpm | awk'{if('$parent_pid' == $3){print $2}}'forpid in$all_pid dokill$pid donekill$parent_pid fiexitrestart(){ stop start # See how we were called. case"$1"instart) start ;; stop) stop ;; restart) stop start ;; status) status $prog RETVAL=$? ;; *) echo$"Usage: $prog {start|stop|restart|status}"exitesac exit$RETVAL


放到/etc/init.d/下 取名php-fpm

chmod +x /etc/init.d/php-fpm

chkconfig php-fpm on

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP