啟動與關閉服務

kimingw發表於2018-07-23

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

  

相關文章