配置伺服器 安裝Nginx

2021-07-30 14:28:08 字數 2611 閱讀 4124

[root@iz2844brz0xz ~]# wget
如果提示wget命令未找到,則執行

[root@iz2844brz0xz ~]# sudo yum install wget
[root@iz2844brz0xz ~]# tar -zxvf nginx-1.12.0.tar.gz
-z: 表示使用gzip的屬性。

-x: 解開乙個壓縮檔案的引數指令。

-v: 表示壓縮的過程中顯示檔案!這個常用,但不建議用在背景執行過程!

-f: 使用檔名,請留意,在 f 之後要立即接檔名喔!不要再加引數!

參考資料

安裝nginx前,需要安裝以下三個依賴包:

gzip 模組需要 zlib 庫

rewrite 模組需要 pcre 庫

ssl 功能需要 openssl 庫

[root@iz2844brz0xz ~]# wget openssl-fips-2.0.14.tar.gz

[root@iz2844brz0xz ~]# wget zlib-1.2.11.tar.gz

[root@iz2844brz0xz ~]# wget
1.安裝openssl

[root@iz2844brz0xz ~]# tar -zxvf openssl-fips-2.0.14.tar.gz 

[root@iz2844brz0xz ~]# cd openssl-fips-2.0.14/

[root@iz2844brz0xz openssl-fips-2.0.14]# ./config

[root@iz2844brz0xz openssl-fips-2.0.14]# make

[root@iz2844brz0xz openssl-fips-2.0.14]# make install

2.安裝zlib

[root@iz2844brz0xz ~]# tar -zxvf zlib-1.2.11.tar.gz 

[root@iz2844brz0xz ~]# cd zlib-1.2.11/

[root@iz2844brz0xz zlib-1.2.11]# ./configure

[root@iz2844brz0xz zlib-1.2.11]# make

[root@iz2844brz0xz zlib-1.2.11]# make install

3.安裝pcre

[root@iz2844brz0xz ~]# tar -zxvf pcre-8.39.tar.gz 

[root@iz2844brz0xz ~]# cd pcre-8.39/

[root@iz2844brz0xz pcre-8.39]# ./configure

[root@iz2844brz0xz pcre-8.39]# make

[root@iz2844brz0xz pcre-8.39]# make install

4.安裝nginx

[root@iz2844brz0xz ~]# tar -zxvf nginx-1.12.0.tar.gz 

[root@iz2844brz0xz ~]# cd nginx-1.12.0/

[root@iz2844brz0xz nginx-1.12.0]# ./configure --with-pcre=../pcre-8.39 --with-zlib=../zlib-1.2.11 --with-openssl=../openssl-fips-2.0.14

[root@iz2844brz0xz nginx-1.12.0]# make

[root@iz2844brz0xz nginx-1.12.0]# make install

檢測是否安裝成功

[root@iz2844brz0xz nginx-1.12.0]# cd /usr/local/nginx/sbin/

[root@iz2844brz0xz sbin]# ./nginx -t

若出現下方資訊表示安裝成功

nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

最後一步:啟動nginx

[root@iz2844brz0xz sbin]# ./nginx
檢視埠

[root@iz2844brz0xz sbin]# netstat -ntlp
出現以下結果

至此,nginx安裝結束

伺服器 nginx安裝和配置

yum y install make zlib zlib devel gcc c libtool openssl openssl devel pcre 作用是讓 ngnix 支援 rewrite 功能。2 解壓安裝包 root bogon src tar zxvf pcre 8.35 tar gz3...

Nginx伺服器安裝和配置

伺服器環境介紹 阿里雲ecs雲伺服器 伺服器系統 ubuntu 伺服器環境 nodejs mongodb 伺服器連線工具 xshell 檔案上傳工具 git 我主要使用這個 也可以使用xftp 託管 碼雲 查詢nginx伺服器安裝包,查詢之前可以先使用apt update更新一下ubuntu系統,然...

Nginx 伺服器配置

我是body內容 我是html注釋內容 在瀏覽器上看到當前頁面的顯示內容兩種方式 1,直接拖動該html檔案到瀏覽器中 2,將該檔案部署到伺服器 bs結構中的關鍵服務軟體,可以執行各種程式,提供各種資源資訊,例如 tomcat nginx,jboss 中,通過瀏覽器位址列訪問該檔案 apache 組...