centos 7.6 安裝 nginx

emanlee發表於2024-08-27

centos 安裝 nginx


# 安裝
sudo yum install nginx


# 啟動/關閉/過載/開機自啟/關閉開機自啟
sudo systemctl [start/stop/reload/enable/disable] nginx

sudo systemctl start nginx

sudo systemctl stop nginx

sudo systemctl enable nginx

# nginx相關命令
# 檢查配置檔案(修改nginx.conf 或 nginx/conf.d/*.conf內的內容後使用)
sudo nginx -t
# 過載配置檔案(檢查 提示沒有問題後 過載下配置檔案即可生效)
sudo nginx -s reload

驗證Nginx是否正確安裝並執行
curl http://localhost/
您應該會看到Nginx的歡迎頁面輸出。如果您能看到這個頁面,那麼Nginx已經成功安裝並執行在您的CentOS系統上了。

檢視狀態:

# 檢視 Nginx 版本
nginx -v
nginx version: nginx/1.20.1 # 檢視 Nginx 安裝目錄 rpm -ql nginx

REF

https://blog.csdn.net/qq_42646672/article/details/141393404

相關文章