Centos 下安裝 Nginx(新)

2022-03-14 02:10:25 字數 1420 閱讀 9215

今天重新實踐了下 centos 7.6 下安裝 nginx,總結了一條更直接並簡單的方式

從官方獲取寫入 nginx.repo 的方式

從官網檢視文件,獲取 nginx.repo 的文件內容,將其內容寫入到指定的檔案

[nginx-stable]

name=nginx stable repo

baseurl=

gpgcheck=1

enabled=1

gpgkey=

module_hotfixes=true

[nginx-mainline]

name=nginx mainline repo

baseurl=

gpgcheck=1

enabled=0

gpgkey=

module_hotfixes=true

將上面內容儲存到檔案/etc/yum.repos.d/nginx.repo

執行 yum

執行 yum 安裝命令,系統自動選擇合適的倉庫配置安裝不出意外的話將會選擇 nginx-stable 的配置

yum install nginx
將 nginx 設定為預設啟動

成功安裝後,執行 systemctl 命令,將 nginx 設定為系統執行時自動啟動,如有需要執行其它 systemctl 命令

systemctl enable nginx

# 控制台顯示結果如下(centos8為例)

created symlink /etc/systemd/system/multi-user.target.wants/nginx.service -> /usr/lib/systemd/system/nginx.service.

其它 systemctl 命令

systemctl is-enabled *.service #查詢服務是否開機啟動

systemctl enable *.service #開機執行服務

systemctl disable *.service #取消開機執行

systemctl start *.service #啟動服務

systemctl stop *.service #停止服務

systemctl restart *.service #重啟服務

systemctl status *.service #查詢服務執行狀態

systemctl --failed #顯示啟動失敗的服務

systemctl list-units --type=service 檢視所有已啟動的服務

Centos 下安裝 PHP (新)

今天重新實踐了下 centos 7.6 下安裝 php7 並完成配置,總結了一條可以照其實現的套路。yum install libxml2 libxml2 devel openssl openssl devel bzip2 bzip2 devel libcurl libcurl devel libj...

CentOS下安裝Nginx步驟

首先確保gcc g 安裝完好 root localhost src gcc v root localhost src g v 安裝pcre軟體 root localhost src tar zxvf pcre 8.35.tar.gz root localhost src cd pcre 8.35一般...

Centos下編譯安裝nginx

之前一直是用yum安裝lamp或者lnmp的環境,最近嘗試編譯安裝,mark一下,也給未來踩坑的人一些幫助 cd usr src wget tar zxvf nginx 1.4.2.tar.gz 進入到解壓後的目錄 cd nginx 1.4.2 配置,檢查當前的環境是否滿足要安裝軟體的依賴關係 co...