1. 程式人生 > >啟動與關閉服務

啟動與關閉服務

clas php res nginx服務 config test conf fpm asc

1、啟動php-fpm服務

# 啟動
service php-fpm start
# 關閉
service php-fpm stop
# 重啟
service php-fpm restart
# 重載
service php-fpm reload
#檢查配置文件
service php-fpm configtest

2、啟動nginx服務

# 啟動
service nginx start
# 關閉
service nginx stop
# 重啟
service nginx restart
# 重載
service nginx reload
#檢查配置文件
service nginx configtest

  

啟動與關閉服務