一.nginx的启停
(1) 启动nginx
/etc/init.d/nginx start
(2) 停止nginx
/etc/init.d/nginx stop
(3) 重启nginx
/etc/init.d/nginx restart
二.nginx配置
配置文件为/usr/local/nginx/conf/nginx.conf,以及其中include的其他配置文件。
root /home/huyong/ehomepay_php/ehomepay/web/; #nginx服务器根目录的路径
三.php-fpm的启停
(1) 启动php-fpm
/etc/init.d/php-fpm start
错误说明已经有php-fpm启动了,先执行killall -9 php-fpm,再启动。
如果不行,检查下 php-fpm.conf ,是否多了host占用 sock。
(2) 停止php-fpm
/etc/init.d/php-fpm stop
(3) 重启php-fpm
/etc/init.d/php-fpm restart
四.php-fpm的配置