【推薦 - 原始碼安裝】nginx - 安裝

chan_炽烽發表於2024-09-15

準備

  1. 檢視作業系統的版本資訊
[root@lab10 ~]# cat /etc/redhat-release 
CentOS Linux release 7.9.2009 (Core)
  1. 檢視作業系統的網路卡地址
[root@lab10 ~]# ip address show ens32
2: ens32: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
    link/ether 00:0c:29:ec:f2:1b brd ff:ff:ff:ff:ff:ff
    inet 10.1.1.10/24 brd 10.1.1.255 scope global ens32
       valid_lft forever preferred_lft forever
    inet6 fe80::20c:29ff:feec:f21b/64 scope link 
       valid_lft forever preferred_lft forever

建立nginx的原始碼目錄

mkdir -p /opt/nginx

下載

  1. 訪問https://nginx.org/en/download.html,下載 nginx

下載連結:https://nginx.org/download/nginx-1.26.2.tar.gz
檔案全稱:nginx-1.26.2.tar.gz
檔案md5:1588676BE2A01A63D3A150FAE6C3F4A9

上傳

將上述 下載 的5個安裝包上傳至 /opt/nginx

安裝編譯環境

yum -y install make gcc pcre-devel openssl-devel zlib-devel perl-ExtUtils-Embed

建立 nginx 使用者

useradd -s /sbin/nologin -r nginx

進入nginx原始碼目錄

cd /opt/nginx

解壓

tar -zxvf nginx-1.26.2.tar.gz

進入解壓目錄

cd /opt/nginx/nginx-1.26.2

執行配置

./configure \
  --user=nginx \
  --group=nginx \
  --with-stream \
  --with-http_ssl_module \
  --with-http_v2_module \
  --with-http_realip_module \
  --with-http_stub_status_module \
  --with-http_gzip_static_module \
  --with-pcre \
  --with-stream_ssl_module \
  --with-stream_realip_module \
  --with-file-aio

編譯

make

安裝

make install

新增指令碼

echo "/usr/local/nginx/sbin:${PATH}" > /etc/profile.d/nginx.sh

配置服務

vim /lib/systemd/system/nginx.service

內容如下:

[Unit]
Description=The nginx HTTP and reverse proxy server
Documentation=http://nginx.org/en/docs/
After=network.target remote-fs.target nss-lookup.target

[Service]
Type=forking
PidFile=/usr/local/nginx/logs/nginx.pid
ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
ExecReload=/bin/kill -s hup $mainpid
ExecStop=/bin/kill -s quit $mainpid
PrivateTmp=true

[Install]
WantedBy=multi-user.target

過載

systemctl daemon-reload

設定自動啟動與啟動nginx服務

systemctl enable --now nginx

訪問

瀏覽器訪問 https://10.1.1.10 ,效果如下

參考連結:

  1. 官網安裝文件
  2. nginx編譯 make 和 make install區別 nginx編譯安裝所有模組

相關文章