CentOS 7.5 编译安装 Nginx 1.15.5

原文地址>>https://blog.7core.cn/thread-18.htm

本文已经简化仅含命令,相关注释请查看原文(非常详细)     

>> 本次实验环境 

- 系统:Centos7.5(1804)、软件:Nginx 1.15.5、依赖:Pcre8.42、Zlib-1.2.11、Openssl-1.1.1

  1、创建用户及用户组

[root@7Core ~]#groupadd -r nginx

[root@7Core ~]# useradd -r -g nginx -s /sbin/nologin -d /usr/local/nginx -M nginx

  2、创建相关目录

[root@7Core ~]# mkdir -pv /var/tmp/nginx/{client_body,proxy,fastcgi,uwsgi,scgi}

[root@7Core ~]# chown -R nginx:nginx /var/tmp/nginx/

[root@7Core ~]# mkdir -pv /usr/local/nginx/logs

[root@7Core ~]# chown -R nginx:nginx /usr/local/nginx/

  3、安装基本环境

[root@7Core ~]# yum -y install gcc gcc-c++ autoconf automake make wget vim

[root@7Core ~]# yum -y install openssl openssl-devel libxml2-devel libxslt-devel perl-devel perl-ExtUtils-Embed libtool zlib zlib-devel pcre pcre-devel patch

  4、创建临时软件包目录

[root@7Core ~]# mkdir package && cd package

  5、安装PCRE-8.42(Nginx的Rewrite功能)

[root@7Core package]# wget https://ftp.pcre.org/pub/pcre/pcre-8.42.tar.gz

[root@7Core package]# tar -zxvf pcre-8.42.tar.gz

[root@7Core package]#cd pcre-8.42/ && ./configure && make && make install && cd ..

  6、安装Zlib-1.2.11(Nginx的Gzip压缩功能)

[root@7Core package]# wget http://www.zlib.net/fossils/zlib-1.2.11.tar.gz

[root@7Core package]# tar -zxvf zlib-1.2.11.tar.gz

[root@7Core package]# cd zlib-1.2.11 && ./configure && make && make install && cd ..

  7、安装OpenSSL-1.1.1(nginx第三方模块—nginx-sticky-module的使用)

[root@7Core package]# wget https://www.openssl.org/source/openssl-1.1.1-pre8.tar.gz 

[root@7Core package]# tar -zxvf openssl-1.1.1-pre8.tar.gz

[root@7Core package]# cd openssl-1.1.1-pre8 && ./config && make && make install && cd ..

  8、安装nginx-sticky-module

[root@7Core package]# wget https://bitbucket.org/nginx-goodies/nginx-sticky-module-ng/get/master.tar.gz

[root@7Core package]# tar -zxvf master.tar.gz

[root@7Core package]# mv nginx-goodies-nginx-sticky-module-ng-08a395c66e42/ nginx-sticky-module/

  9、安装Nginx-1.15.5

[root@7Core package]# wget http://nginx.org/download/nginx-1.15.5.tar.gz

[root@7Core package]# tar -zxvf nginx-1.15.5.tar.gz

[root@7Core package]# cd nginx-1.15.5

[root@7Core nginx-1.15.5]# ./configure \

--prefix=/usr/local/nginx\

--sbin-path=/usr/sbin/nginx\

--conf-path=/etc/nginx/nginx.conf \

--error-log-path=/var/log/nginx/error.log \

--http-log-path=/var/log/nginx/access.log \

--pid-path=/var/run/nginx.pid  \

--lock-path=/var/lock/nginx.lock \

--user=nginx \

--group=nginx \

--with-http_ssl_module \

--with-http_v2_module \

--with-http_dav_module \

--with-http_flv_module \

--with-http_realip_module \

--with-http_addition_module \

--with-http_xslt_module \

--with-http_stub_status_module \

--with-http_sub_module \

--with-http_random_index_module \

--with-http_degradation_module \

--with-http_secure_link_module \

--with-http_gzip_static_module \

--with-http_perl_module \

--add-module=../nginx-sticky-module\

--with-pcre=../pcre-8.42 \

--with-zlib=../zlib-1.2.11 \

--with-openssl=../openssl-1.1.1-pre8 \

--with-file-aio \

--with-mail \

--with-mail_ssl_module \

--http-client-body-temp-path=/var/tmp/nginx/client_body\

--http-proxy-temp-path=/var/tmp/nginx/proxy\

--http-fastcgi-temp-path=/var/tmp/nginx/fastcgi\

--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi\

--http-scgi-temp-path=/var/tmp/nginx/scgi\

--with-stream \

--with-ld-opt="-Wl,-E"

  10、配置完成后编译并安装Nginx

[root@7Core nginx-1.15.5]# make && make install

  11、将Nginx加入systemctl管理服务

[root@7Core nginx-1.15.5]# vim /usr/lib/systemd/system/nginx.service

#按i进入编辑模式写入以下内容(不包含本行)

[Unit]

Description=nginx - high performance web server

After=network.target remote-fs.target nss-lookup.target

[Service]

Type=forking

ExecStart=/usr/sbin/nginx-c /etc/nginx/nginx.conf

ExecReload=/usr/sbin/nginx-s reload

ExecStop=/usr/sbin/nginx-s stop

[Install]

WantedBy=multi-user.target

  12、给予文件754权限

[root@7Core nginx-1.15.5]# chmod 754 /usr/lib/systemd/system/nginx.service

  13、修改或新增文件需要执行以下语句才能生效

[root@7Core nginx-1.15.5]# systemctl daemon-reload

  14、启动Nginx服务器

[root@7Core nginx-1.15.5]# systemctl start nginx

[root@7Core nginx-1.15.5]# systemctl enable nginx

  15、查看Nginx服务启动状态

[root@7Core nginx-1.15.5]# systemctl status nginx

  16、CentOS7 添加开放TCP 80端口

[root@7Core nginx-1.15.5]# firewall-cmd --zone=public --add-port=80/tcp --permanent

[root@7Core nginx-1.15.5]# firewall-cmd --reload 

  17、查看Nginx版本

[root@7Core nginx-1.15.5]# nginx -v

  >>返回结果如下图,即安装成功

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,607评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,047评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,496评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,405评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,400评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,479评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,883评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,535评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,743评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,544评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,612评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,309评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,881评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,891评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,136评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,783评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,316评论 2 342