编译安装nginx

image.png
[root@web02 ~]# wget -P /app/tools   http://nginx.org/download/nginx-1.16.1.tar.gz
--2019-08-28 20:02:01--  http://nginx.org/download/nginx-1.16.1.tar.gz
Resolving nginx.org (nginx.org)... 95.211.80.227, 62.210.92.35, 2001:1af8:4060:a004:21::e3
Connecting to nginx.org (nginx.org)|95.211.80.227|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1032630 (1008K) [application/octet-stream]
Saving to: ‘/app/tools/nginx-1.16.1.tar.gz.2’

100%[=====================================================>] 1,032,630   46.7KB/s   in 52s    

2019-08-28 20:02:56 (19.3 KB/s) - ‘/app/tools/nginx-1.16.1.tar.gz.2’ saved [1032630/1032630]
解压
[root@web02 /app/tools]# tar xf nginx-1.16.1.tar.gz 
安装包里的内容
[root@web02 /app/tools/nginx-1.16.1]# ll
total 120
drwxr-xr-x 2 www  www       6 Aug 13 20:51 auto
-rw------- 1 root root 109056 Aug 28 20:38 CHANGES.ru
drwxr-xr-x 2 www  www       6 Aug 13 20:51 conf
-rwxr-xr-x 1 www  www    2502 Aug 13 20:51 configure
drwxr-xr-x 2 www  www       6 Aug 13 20:51 contrib
drwxr-xr-x 2 www  www       6 Aug 13 20:51 html
-rw-r--r-- 1 www  www    1397 Aug 13 20:51 LICENSE
drwxr-xr-x 2 www  www       6 Aug 13 20:51 man
-rw-r--r-- 1 www  www      49 Aug 13 20:51 README
drwxr-xr-x 2 www  www       6 Aug 13 20:51 src
如果已下载nginx 卸载使用--nodeps 删除依赖关系 尽量少使用 yum remove 删除会把相关的软件也都删除
[root@web01 ~]# rpm -e nginx --nodeps
修改代码
[root@web01 /app/tools/nginx-1.16.1/src/core]# vim nginx.h
 1 
  2 /*
  3  * Copyright (C) Igor Sysoev
  4  * Copyright (C) Nginx, Inc.
  5  */
  4  * Copyright (C) Nginx, Inc.
  5  */
  6 
  7 
  8 #ifndef _NGINX_H_INCLUDED_
  9 #define _NGINX_H_INCLUDED_
 10 
 11 
 12 #define nginx_version      1016001
 13 #define NGINX_VERSION      "1.16.1"
 14 #define NGINX_VER          "oldboy-wang/" NGINX_VERSION
 15 
 16 #ifdef NGX_BUILD
 17 #define NGINX_VER_BUILD    NGINX_VER " (" NGX_BUILD ")"
18 #else
 19 #define NGINX_VER_BUILD    NGINX_VER
 20 #endif
 21 
 22 #define NGINX_VAR          "oldboy-wang"
 23 #define NGX_OLDPID_EXT     ".oldbin"
 24 
 25 
 26 #endif /* _NGINX_H_INCLUDED_ */
修改14 22行
修改代码
[root@web01 /app/tools/nginx-1.16.1/src/http]# vim ngx_http_header_filter_module.c
 49 static u_char ngx_http_server_string[] = "Server: oldboy-wang" CRLF;
 50 static u_char ngx_http_server_full_string[] = "Server: " NGINX_VER CRLF;
 51 static u_char ngx_http_server_build_string[] = "Server: " NGINX_VER_BUILD CRLF;
修改49行
修改代码
[root@web01 /app/tools/nginx-1.16.1/src/http]# vim ngx_http_special_response.c
35 static u_char ngx_http_error_tail[] =
 36 "<hr><center>oldboy-wang</center>" CRLF
 37 "</body>" CRLF
 38 "</html>" CRLF
修改36行
[root@web01 /app/tools/nginx-1.16.1]# ./configure --prefix=/app/nginx-1.16.1  --user=nginx --group=nginx --with-http_ssl_module  --with-http_stub_status_module
checking for OS
 + Linux 3.10.0-957.el7.x86_64 x86_64
checking for C compiler ... found
 + using GNU C compiler
 + gcc version: 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC) 
checking for gcc -pipe switch ... found
checking for -Wl,-E switch ... found
checking for gcc builtin atomic operations ... found
checking for C99 variadic macros ... found
checking for gcc variadic macros ... found
checking for gcc builtin 64 bit byteswap ... found
checking for unistd.h ... found
安装nginx依赖库
[root@web01 /app/tools/nginx-1.16.1]# yum install openssl-devel pcre-devel -y 
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Could not retrieve mirrorlist https://mirror.webtatic.com/yum/el7/x86_64/mirrorlist error was
14: curl#7 - "Failed connect to mirror.webtatic.com:443; Connection refused"
 * base: mirrors.aliyun.com
 * extras: mirrors.aliyun.com
 * updates: mirrors.aliyun.com
 * webtatic: uk.repo.webtatic.com
base                                                                                            | 3.6 kB  00:00:00     
epel                                                                                            | 5.4 kB  00:00:00     
extras                                                                                          | 3.4 kB  00:00:00     
nginx-stable                                                                                    | 2.9 kB  00:00:00     
updates                                                                                         | 3.4 kB  00:00:00     
https://us-east.repo.webtatic.com/yum/el7/x86_64/repodata/repomd.xml: [Errno 14] curl#7 - "Failed connect to us-east.re
编译安装
[root@web01 /app/tools/nginx-1.16.1]#  make  && make install
创建软连接
[root@web01 /app/tools]# ln -s /app/nginx-1.16.1/ /app/nginx
检查语法
[root@web01 /app/tools]# /app/nginx/sbin/nginx -t
nginx: the configuration file /app/nginx-1.16.1/conf/nginx.conf syntax is ok
nginx: configuration file /app/nginx-1.16.1/conf/nginx.conf test is successful
启动nginx
[root@web01 /app/tools]# /app/nginx/sbin/nginx
查看端口
[root@web01 /app/tools]# lsof -i:80
COMMAND   PID  USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
nginx   15252  root    6u  IPv4 119064      0t0  TCP *:http (LISTEN)
nginx   15253 nginx    6u  IPv4 119064      0t0  TCP *:http (LISTEN)
查看下目录
[root@web01 /app/tools]# ll /app/nginx
lrwxrwxrwx 1 root root 18 Aug 27 11:35 /app/nginx -> /app/nginx-1.16.1/
[root@web01 /app/tools]# ll /app/nginx/
total 0
drwx------ 2 nginx root   6 Aug 27 11:19 client_body_temp
drwxr-xr-x 2 root  root 333 Aug 28 10:27 conf
drwx------ 2 nginx root   6 Aug 27 11:19 fastcgi_temp
drwxr-xr-x 2 root  root  40 Aug 27 11:13 html
drwxr-xr-x 2 root  root  58 Aug 27 11:19 logs
lrwxrwxrwx 1 root  root  18 Aug 29 19:33 nginx-1.16.1 -> /app/nginx-1.16.1/
drwx------ 2 nginx root   6 Aug 27 11:19 proxy_temp
drwxr-xr-x 2 root  root  36 Aug 29 19:22 sbin
drwx------ 2 nginx root   6 Aug 27 11:19 scgi_temp
drwx------ 2 nginx root   6 Aug 27 11:19 uwsgi_temp
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,013评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,205评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,370评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,168评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,153评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,954评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,271评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,916评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,382评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,877评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,989评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,624评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,209评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,199评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,418评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,401评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,700评论 2 345

推荐阅读更多精彩内容