1. 程式人生 > 資訊 >全球 5G 網速縮水:今年三季度同比下滑最高達 39%

全球 5G 網速縮水:今年三季度同比下滑最高達 39%

什麼是Nginx伺服器
一個高效能的HTTP和反向代理web伺服器

1.nginx下載

2.上傳

//上傳
[root@xiaobing software]# rz -E
rz waiting to receive.
[root@xiaobing software]# ls
nginx-1.13.7.tar.gz
//解壓
[root@xiaobing software]# tar -zxvf nginx-1.13.7.tar.gz 
//重新命名
[root@xiaobing software]# mv nginx-1.13.7 nginx
[root@xiaobing software]# ls
nginx

3.安裝依賴yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel

4.nginx安裝

//執⾏行行命令
./configure
make
make install

make 遇到錯誤:

解決問題:

cd /usr/local/software/nginx/src/os/unix
[root@xiaobing unix]# vim ngx_user.c
//修改前
#ifdef __GLIBC__
    /* work around the glibc bug */
    cd.current_salt[0] = ~salt[0];
#endif
//修改後 #ifdef __GLIBC__ /* work around the glibc bug */ /* cd.current_salt[0] = ~salt[0];*/ #endif //重新make問題解決
//最後一步:
//將對應的makefile資料夾中(如本文中在 /nginx/objs/Makefile) 找到 -Werrori 並去掉 
//修改前
CFLAGS =  -pipe  -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g
//修改後
CFLAGS =  -pipe  -O -W -Wall -Wpointer-arith -Wno-unused-parameter -g

5.執行完安裝命令後啟動nginx

cd /usr/local/nginx/sbin
[root@xiaobing sbin]# ./nginx

6.公網IP:80

7.檢視訪問日誌/usr/local/nginx/logs