> CentOS > CentOS入门 >

centos 下重启nginx和php

shell基础


查看软件安装路径:
whereis php
find / -name nginx.config
find 查找 / 从根目录 -name 文件查找 

which
locate

/usr/local/nginx/sbin/nginx -s stop   //关闭服务器
/usr/local/nginx/sbin/nginx  开启服务器



php-fpm重启

killall php-fpm

再执行(usr/local/php是php的安装目录)
/usr/local/php/sbin/php-fpm & (责任编辑:IT)