Php-fpm startup script in LNMP environment-php Tutorial

Source: Internet
Author: User
In the LNMP environment, the php-fpm startup script installs the LNMP environment, PHP5.4.37 VersionAfter the installation is successful, when the php-fpm service is added to the system startup item, the following error occurs: service php-fpm does not support chkconfig; php-fpm service does not support chkconfig;

Edit the/etc/init. d/php-fpm startup script. the startup script is garbled after it is opened. The reason is that the script file for copying php-fpm is incorrect.

Copy the php-fpm startup script from the same php version in the same environment and re-edit and paste it. after saving and exiting, you can add the startup item normally. if you encounter the same situation, you can directly copy the script, keep the same path as the script content.


The php-fpm startup script is as follows:

#! /bin/sh### BEGIN INIT INFO# Provides:          php-fpm# Required-Start:    $remote_fs $network# Required-Stop:     $remote_fs $network# Default-Start:     2 3 4 5# Default-Stop:      0 1 6# Short-Description: starts php-fpm# Description:       starts the PHP FastCGI Process Manager daemon### END INIT INFOprefix=/usr/local/phpexec_prefix=${prefix}php_fpm_BIN=${exec_prefix}/sbin/php-fpmphp_fpm_CONF=${prefix}/etc/php-fpm.confphp_fpm_PID=${prefix}/var/run/php-fpm.pidphp_opts="--fpm-config $php_fpm_CONF --pid $php_fpm_PID"wait_for_pid () { try=0 while test $try -lt 35 ; do  case "$1" in   'created')   if [ -f "$2" ] ; then    try=''    break   fi   ;;   'removed')   if [ ! -f "$2" ] ; then    try=''    break   fi   ;;  esac  echo -n .  try=`expr $try + 1`  sleep 1 done}case "$1" in start)  echo -n "Starting php-fpm "  $php_fpm_BIN --daemonize $php_opts  if [ "$?" != 0 ] ; then   echo " failed"   exit 1  fi  wait_for_pid created $php_fpm_PID  if [ -n "$try" ] ; then   echo " failed"   exit 1  else   echo " done"  fi ;; stop)  echo -n "Gracefully shutting down php-fpm "  if [ ! -r $php_fpm_PID ] ; then   echo "warning, no pid file found - php-fpm is not running ?"   exit 1  fi  kill -QUIT `cat $php_fpm_PID`  wait_for_pid removed $php_fpm_PID  if [ -n "$try" ] ; then   echo " failed. Use force-quit"   exit 1  else   echo " done"  fi ;; status)  if [ ! -r $php_fpm_PID ] ; then   echo "php-fpm is stopped"   exit 0  fi  PID=`cat $php_fpm_PID`  if ps -p $PID | grep -q $PID; then   echo "php-fpm (pid $PID) is running..."  else   echo "php-fpm dead but pid file exists"  fi ;; force-quit)  echo -n "Terminating php-fpm "  if [ ! -r $php_fpm_PID ] ; then   echo "warning, no pid file found - php-fpm is not running ?"   exit 1  fi  kill -TERM `cat $php_fpm_PID`  wait_for_pid removed $php_fpm_PID  if [ -n "$try" ] ; then   echo " failed"   exit 1  else   echo " done"  fi ;; restart)  $0 stop  $0 start ;; reload)  echo -n "Reload service php-fpm "  if [ ! -r $php_fpm_PID ] ; then   echo "warning, no pid file found - php-fpm is not running ?"   exit 1  fi  kill -USR2 `cat $php_fpm_PID`  echo " done" ;; *)  echo "Usage: $0 {start|stop|force-quit|restart|reload|status}"  exit 1 ;;esac

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.