admin

CentOS重启Apache、MySQL、Nginx、php-fpm

admin web技术 2017-03-31 2101浏览 0

 Centos上Apache重启,mysql重启, nginx 重启方法
  Linux学习,http:// linux.it.net.cn

  1.重启 apache Linux学习,http:// linux.it.net.cn

  service httpd restrat IT网,http://www.it.net.cn

  /etc/init.d/httpd stop


  /etc/init.d/httpd start


  2.重启 mysql


  service mysqld restart IT网,http://www.it.net.cn

  /etc/init.d/mysqld stop


  /etc/init.d/mysqld start


  3.重启Nginx Linux学习,http:// linux.it.net.cn

  service nginx restart

  /etc/init.d/nginx stop


  /etc/init.d/nginx start


 4.重启fpm Linux学习,http:// linux.it.net.cn

php 5.3.3 中 php-fpm 的重启、终止操作命令

php 5.3.3 源码中已经内嵌了 php-fpm,不用象以前的php版本一样专门打补丁了,只需要在configure的时候添加编译参数即可。

关于php-fpm的编译参数有 –enable-fpm –with-fpm-user=www –with-fpm-group=www –with-libevent-dir=libevent位置。


但是,php 5.3.3 下的php-fpm 不再支持 php-fpm 以前具有的 /usr/local/php/sbin/php-fpm (start|stop|reload)等命令,需要使用信号控制:

master进程可以理解以下信号

INT, TERM 立刻终止

QUIT 平滑终止


USR1 重新打开日志文件 IT网,http://www.it.net.cn

USR2 平滑重载所有worker进程并重新载入配置和二进制模块 Linux学习,http:// linux.it.net.cn

示例:


php-fpm 关闭: Linux学习,http:// linux.it.net.cn

kill -INT `cat /usr/local/php/var/run/php-fpm.pid`

php-fpm 重启:


kill -USR2 `cat /usr/local/php/var/run/php-fpm.pid`


查看php-fpm进程数: Linux学习,http:// linux.it.net.cn

ps aux | grep -c php-fpm

CentOS重启Apache、MySQL、Nginx、php-fpm


发表评论