简体   繁体   English

服务 php-fpm 不支持 chkconfig

[英]Service php-fpm does not support chkconfig

Everything is working fine.一切正常。

Just that when i chkconfig –add php-fpm就是当我 chkconfig –add php-fpm

It throws me an error Service php-fpm does not support chkconfig它给我一个错误服务 php-fpm 不支持 chkconfig

php-5.2.13 php-5.2.13-fpm-0.5.13.diff.gz php-5.2.13 php-5.2.13-fpm-0.5.13.diff.gz

Below is the configuration i use ./configure --enable-fastcgi --enable-fpm --build=x86_64-redhat-linux-gnu --host=x86_64-redhat-linux-gnu --target=x86_64-redhat-linux-gnu --program-prefix= --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/usr/com --mandir=/usr/share/man --infodir=/usr/share/info --cache-file=../config.cache --with-libdir=lib64 --with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d --disable-debug --with-pic --disable-rpath --with-pear --with-bz2 --with-curl --with-exec-dir=/usr/bin --with-freetype-dir=/usr --with-png-dir=/usr --enable-gd-native-ttf --without-gdbm --with-gettext --with-gmp --with-iconv --with-jpeg-dir=/usr --with-openssl --with-png --with-expat-dir=/usr --with-pcre-regex=/usr --with-zlib --with-layout=GNU --enable-exif --enable-ftp --enable-magic-quotes --enable-sockets --以下是我使用的配置 ./configure --enable-fastcgi --enable-fpm --build=x86_64-redhat-linux-gnu --host=x86_64-redhat-linux-gnu --target=x86_64-redhat-linux -gnu --program-prefix= --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr /share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/usr/com --mandir=/usr/share/man --infodir=/usr/share/info --cache-file=../config.cache --with-libdir=lib64 --with-config-file-path=/etc --with-config-file-scan -dir=/etc/php.d --disable-debug --with-pic --disable-rpath --with-pear --with-bz2 --with-curl --with-exec-dir=/usr/ bin --with-freetype-dir=/usr --with-png-dir=/usr --enable-gd-native-ttf --without-gdbm --with-gettext --with-gmp --with-iconv --with-jpeg-dir=/usr --with-openssl --with-png --with-expat-dir=/usr --with-pcre-regex=/usr --with-zlib --with-layout =GNU --enable-exif --enable-ftp --enable-magic-quotes --enable-sockets -- enable-sysvsem --enable-sysvshm --enable-sysvmsg --enable-track-vars --enable-trans-sid --enable-yp --enable-wddx --with-kerberos --enable-ucd-snmp-hack --with-unixODBC=shared,/usr --enable-memory-limit --enable-shmop --enable-calendar --enable-dbx --enable-dio --with-mime-magic=/usr/share/file/magic.mime --without-sqlite --with-libxml-dir=/usr --with-xml --with-system-tzdata --without-mysql --without-gd --without-odbc --disable-dom --disable-dba --without-unixODBC --disable-pdo --disable-xmlreader --disable-xmlwriter enable-sysvsem --enable-sysvshm --enable-sysvmsg --enable-track-vars --enable-trans-sid --enable-yp --enable-wddx --with-kerberos --enable-ucd-snmp- hack --with-unixODBC=shared,/usr --enable-memory-limit --enable-shmop --enable-calendar --enable-dbx --enable-dio --with-mime-magic=/usr/share /file/magic.mime --without-sqlite --with-libxml-dir=/usr --with-xml --with-system-tzdata --without-mysql --without-gd --without-odbc -- disable-dom --disable-dba --without-unixODBC --disable-pdo --disable-xmlreader --disable-xmlwriter

Is there a php-fpm script in /etc/init.d? /etc/init.d 中是否有 php-fpm 脚本? That's what chkconfig works off of.这就是 chkconfig 的工作原理。 It looks for a comment in the script:它在脚本中查找注释:

 # chkconfig: 345 26 74

to figure out which runlevels should be configured.找出应该配置哪些运行级别。 If there's no php-fpm init script, or the script doesn't contain that chkconfig comment, then chkconfig has nothing to work off of.如果没有 php-fpm init 脚本,或者该脚本不包含该 chkconfig 注释,则 chkconfig 没有任何工作。

In PHP 5.3.x there is already a file php-5.3.3/sapi/fpm/init.d.php-fpm in the source distro that just must be moved to /etc/rc.d/init.d folder.在 PHP 5.3.x 中,源发行版中已经有一个文件php-5.3.3/sapi/fpm/init.d.php-fpm ,必须将其移动到/etc/rc.d/init.d文件夹中。 Make it executable by chmod +x and you are done and can chkconfig it now.通过 chmod +x 使其可执行,您就完成了,现在可以对其进行 chkconfig。

  1. vi /etc/init.d/php-fpm

    add these lines on top (modify paths where required):在顶部添加这些行(根据需要修改路径):

     # chkconfig: - 85 15 # processname: php-cgi # config: /usr/local/php-fpm/etc/php-fpm.conf # config: /etc/sysconfig/php-fpm # pidfile: /usr/local/php-fpm/logs/php-fpm.pid
  2. vi /etc/sysconfig/php-fpm

    paste:粘贴:

     PHP-FPM_CONF_FILE=/usr/local/php-fpm/etc/php-fpm.conf

The script must have 2 lines:该脚本必须有 2 行:

# chkconfig: <levels> <start> <stop>

for example:例如:

# chkconfig: 345 99 01

345 - levels to configure
99 - startup order
01 - stop order
After you add the above headers you can run chkconfig --add <service>.

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM