Created
          May 25, 2013 11:35 
        
      - 
      
- 
        Save solicomo/5648787 to your computer and use it in GitHub Desktop. 
    CentOS 下 php-fpm 的启动脚本
  
        
  
    
      This file contains hidden or 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/sh | |
| # | |
| # php-fpm - this script starts and stops the php-fpm daemon | |
| # | |
| # chkconfig: - 85 15 | |
| # description: PHP-FPM | |
| # processname: php-fpm | |
| # config: /usr/local/php/etc/php-fpm.conf | |
| # pidfile: /var/run/php-fpm.pid | |
| # Source function library. | |
| . /etc/rc.d/init.d/functions | |
| # Source networking configuration. | |
| . /etc/sysconfig/network | |
| # Check that networking is up. | |
| [ "$NETWORKING" = "no" ] && exit 0 | |
| php_fpm="/usr/local/sbin/php-fpm" | |
| prog=$(basename $php_fpm) | |
| PHP_FPM_CONF_FILE="/usr/local/php/etc/php-fpm.conf" | |
| lockfile=/var/lock/subsys/php-fpm | |
| start() { | |
| [ -x $php_fpm ] || exit 5 | |
| [ -f $PHP_FPM_CONF_FILE ] || exit 6 | |
| echo -n $"Starting $prog: " | |
| daemon $php_fpm -y $PHP_FPM_CONF_FILE | |
| retval=$? | |
| echo | |
| [ $retval -eq 0 ] && touch $lockfile | |
| return $retval | |
| } | |
| stop() { | |
| echo -n $"Stopping $prog: " | |
| killproc $prog | |
| retval=$? | |
| echo | |
| [ $retval -eq 0 ] && rm -f $lockfile | |
| return $retval | |
| } | |
| restart() { | |
| stop | |
| start | |
| } | |
| rh_status() { | |
| status $prog | |
| } | |
| rh_status_q() { | |
| rh_status >/dev/null 2>&1 | |
| } | |
| case "$1" in | |
| start) | |
| rh_status_q && exit 0 | |
| $1 | |
| ;; | |
| stop) | |
| rh_status_q || exit 0 | |
| $1 | |
| ;; | |
| restart) | |
| $1 | |
| ;; | |
| status) | |
| rh_$1 | |
| ;; | |
| *) | |
| echo $"Usage: $0 {start|stop|status|restart}" | |
| exit 2 | |
| esac | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment