博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos7下编译安装nginx-1.16.0
阅读量:6254 次
发布时间:2019-06-22

本文共 1759 字,大约阅读时间需要 5 分钟。

一、下载nginx源码

http://nginx.org/en/download.html

如:nginx-1.16.0.tar.gz

 

二、创建用户和组,并解压

groupadd wwwuseradd -g www wwwtar xf nginx-1.16.0.tar.gz

  

三、下载openssl,编译高版本openssl

https://www.openssl.org/source/

如:openssl-1.0.2r.tar.gz

tar xf openssl-1.0.2r.tar.gz

  

四、编译安装nginx

cd nginx-1.16.0./configure --prefix=/data/nmp/nginx \--user=www \--group=www \--with-pcre \--with-openssl=/data/openssl-1.0.2r \--with-http_ssl_module \--with-http_v2_module \--with-http_realip_module \--with-http_addition_module \--with-http_sub_module \--with-http_dav_module \--with-http_flv_module \--with-http_mp4_module \--with-http_gunzip_module \--with-http_gzip_static_module \--with-http_random_index_module \--with-http_secure_link_module \--with-http_stub_status_module \--with-http_auth_request_module \--with-http_image_filter_module \--with-http_slice_module \--with-mail \--with-threads \--with-file-aio \--with-stream \--with-mail_ssl_module \--with-stream_ssl_module \

--with-openssl 的路径设置为第3步中openssl源码解压路径。

上面的有些模块大家可以按需安装。

make -j8 && make install

  

五、配置systemd服务

创建 nginx.service 文件

vi /usr/lib/systemd/system/nginx.service[Unit]Description=The nginx HTTP and reverse proxy serverAfter=syslog.target network.target remote-fs.target nss-lookup.target[Service]Type=forkingExecStartPre=/data/nmp/nginx/sbin/nginx -tExecStart=/data/nmp/nginx/sbin/nginx -c /data/nmp/nginx/conf/nginx.confExecReload=/data/nmp/nginx/sbin/nginx -s reloadExecStop=/data/nmp/nginx/sbin/nginx -s stopPrivateTmp=true[Install]WantedBy=multi-user.target

启用 nginx.service

systemctl enable nginx.service

启动 nginx

systemctl start nginx.service

  

 六、设置firewalld防火墙,开放80端口

firewall-cmd --zone=public --add-port=80/tcp --permanentfirewall-cmd --reload

  

 

转载于:https://www.cnblogs.com/jkko123/p/10790816.html

你可能感兴趣的文章
qt 学习之路2
查看>>
算法分析-快速排序QUICK-SORT
查看>>
线上应用故障排查之二:高内存占用
查看>>
第四次作业
查看>>
异常处理汇总 ~ 修正果带着你的Code飞奔吧!
查看>>
百度地图需要的效果-有感
查看>>
BZOJ 1853: [Scoi2010]幸运数字
查看>>
BFS --- 素数环
查看>>
PCIE_DMA:xapp1052学习笔记
查看>>
给报表增加页眉
查看>>
python ----字符串基础练习题30道
查看>>
K 班1-7,alpha,beta 作业成绩汇总
查看>>
uva-10879-因数分解
查看>>
python 调用aiohttp
查看>>
Spring Boot中使用MyBatis注解配置详解
查看>>
linux下文件的一些文件颜色的含义
查看>>
跨域iframe高度自适应(兼容IE/FF/OP/Chrome)
查看>>
基于WinDbg的内存泄漏分析
查看>>
如何花更少的时间学习更多的知识
查看>>
学习鸟哥的Linux私房菜笔记(8)——文件查找与文件管理2
查看>>