一、安裝相關依賴
yuminstall
gcc-c++
yuminstall -y pcre pcre-devel
yuminstall -y zlib zlib-devel
yuminstall -y openssl openssl-devel
tar -zxvf nginx-1.16.1.tar.gzcd nginx-1.16.1.tar
.gz./configure
make
make
install
whereis nginx
三、設定開機自啟動
在/usr/lib/systemd/system目錄下建立nginx.service檔案,內容如下:
[unit]description=nginx service
after=network.target
[service]
type=forking
execstart=/usr/local/nginx/sbin/nginx
execreload=/usr/local/nginx/sbin/nginx -s reload
execstop=/usr/local/nginx/sbin/nginx -s quit
privatetmp=true
[install]
wantedby=multi-user.target
加入開機自啟動:
systemctl enable nginx
取消開機自啟動:
systemctl disable nginx
四、服務操作命令
啟動nginx服務
# systemctl start nginx.service
停止服務
# systemctl stop nginx.service
重新啟動服務
# systemctl restart nginx.service
檢視服務當前狀態
# systemctl status nginx.service
CentOS7安裝 Apache HTTP 伺服器
點選 11457次 不管你因為什麼原因使用伺服器,大部分情況下你都需要乙個 http 伺服器執行 多 使用者端指令碼和很多其它的東西。安裝 apache 伺服器 listen 80 把埠號 80 改為其它任何埠 例如 3221 儲存並退出。更改 apache 埠 允許 http 服務通過防火牆 永久...
centos7安裝nginx與nginx配置檔案
yum install gcc c nginx原始碼編譯需要 yum install y pcre pcre devel nginx 的 http 模組使用 pcre 來解析正規表示式yum install y zlib zlib devel nginx 使用zlib對http包的內容進行gzipy...
Centos7 編譯安裝Nginx
nginx版本分開發版和穩定版,生產環境使用穩定版,實驗新功能,新特性可以使用開發版。安裝nginx編譯需要依賴的包 yum install gcc gcc c wget yum install pcre devel zlib devel openssl devel說明 zlib nginx提供gz...