CentOS重啓Apache、MySQL、Nginx、php-fpm Centos上Apache重啓,mysql重啓, nginx 重啓方法 1.重啓 apachephp
service httpd restratmysql
/etc/init.d/httpd stopnginx
/etc/init.d/httpd startsql
2.重啓 mysqlapache
service mysqld restartcentos
/etc/init.d/mysqld stopssh
/etc/init.d/mysqld startphp-fpm
3.重啓Nginxcentos7
service nginx restartrest
/etc/init.d/nginx stop
/etc/init.d/nginx start
4.重啓fpm
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 從新打開日誌文件
USR2 平滑重載全部worker進程並從新載入配置和二進制模塊
示例:
php-fpm 關閉:
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進程數:
ps aux | grep -c php-fpm
以上均是老版本的centos,centos7以後就要 service sshd restart 或者systemctl retart sshd.service