nginx 快速安裝

2022-08-26 05:57:07 字數 829 閱讀 3514

必要條件

1能訪問外網

2防火牆放開80

3有軟體安裝許可權

一、設定centos7的yum源及epel yum源

wget -o /etc/yum.repos.d/epel.repo

wget -o /etc/yum.repos.d/centos-base.repo

更新快取

yum clean all

yum makecache

檢視當前源包含的nginx版本資訊

yum info nginx

二、安裝nginx

yum install nginx -y

三、設定服務開機自啟動並啟動nginx服務

systemctl enable nginx

systemctl start nginx

四、檢查執行埠資訊

ss -ntlp

五、瀏覽器進行訪問驗證nginx服務是否正常執行

六、登入後台查詢nginx訪問日誌

cd /var/log/nginx/

tail -f access.log

ps:啟動使用 systemctl start nginx 可以使用 nginx -s stop 停止

nginx 啟動

nginx -t 檢查配置檔案語法

nginx -s reload 重啟

nginx -p 配置檔案路徑

nginx -v 檢視版本資訊(包括編譯資訊)

linux環境安裝快速安裝nginx

總結 nginx常用命令 yum install yum utils 到 cd etc yum.repos.d 目錄下 新建 vim nginx.repo 檔案 輸入以下資訊 通過yum search nginx看看是否已經新增源成功。如果成功則執行下列命令安裝nginx。yum install n...

nginx快速執行安裝指令碼

nginx一鍵安裝指令碼,我 寫的,我收錄一下,嘻嘻 usr bin python encoding utf 8 version 1.1 import sys,os,commands def exec test cmd stat,output commands.getstatusoutput cmd...

cenos7安裝快速安裝Nginx

1.確認系統有安裝gcc。如果沒有的話。執行 yum y gcc install 2.pcre是乙個perl庫,包括perl相容的正規表示式庫,nginx的http模組使用pcre來解析正規表示式,安裝pcre庫 yum install y pcre pcre devel 3.zlib庫提供多種壓縮...