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

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

本博主要示例通过编译nginx官网的源码的方式,安装nginx程序包。

如果想通过yum方式安装nginx,可查看官方文档 http://nginx.org/en/linux_packages.html

 

系统环境

linux内核版本    3.10.0-514.el7.x86_64

centos系统版本      CentOS Linux release 7.3.1611 (Core)

IP地址       172.16.55.7/16  192.168.55.135/24

 

准备

关闭selinux,清空iptables规则(对这些熟悉的同学可以不做处理)

 

1.下载nginx源码

~]# wget http://nginx.org/download/nginx-1.10.3.tar.gz

2.安装nginx依赖的程序包

~]# yum install -y pcre-devel openssl-devel zlib-devel

3.创建nginx系统用户

~]# useradd -r -s /sbin/nologin nginx

4.解压nginx源码包

~]# tar xvf nginx-1.10.3.tar.gz

5.根据具体需求编译源码

nginx-1.10.3]# ./configure --prefix=/usr/local/nginx --sbin-path=/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/run/nginx.lock --user=nginx --group=nginx --with-http_ssl_module --with-http_v2_module --with-http_dav_module --with-http_stub_status_module --with-threads --with-file-aio
nginx-1.10.3]# make && make install

6.启动nginx服务

[root@localhost nginx]# nginx                   # 启动nginx[root@localhost nginx]# ps aux | grep nginxroot      13324  0.0  0.0  45428  1116 ?        Ss   09:52   0:00 nginx: master process nginxnginx     13325  0.0  0.0  47964  1956 ?        S    09:52   0:00 nginx: worker processroot      13336  0.0  0.0 112648   960 pts/3    R+   09:52   0:00 grep --color=auto nginx [root@localhost nginx]# ss -tnlp | grep nginx   # 监听80端口 LISTEN     0      128          *:80                       *:*                   users:(("nginx",pid=13325,fd=6),("nginx",pid=13324,fd=6))

7.访问nginx服务

[root@localhost nginx]# curl 172.16.55.7Welcome to nginx!

Welcome to nginx!

If you see this page, the nginx web server is successfully installed andworking. Further configuration is required.

For online documentation and support please refer tonginx.org.

Commercial support is available atnginx.com.

Thank you for using nginx.

 

转载于:https://www.cnblogs.com/vathe/p/7063392.html

你可能感兴趣的文章
16.3. Struts tiles
查看>>
如何将ADT项目导入Android studio及常見問題
查看>>
Oracle数据库端口突然无法访问的分析(r12笔记第46天)
查看>>
制造商商参数文件(MPN Profile)T-code:OMPN
查看>>
通过Oracle来辅助MySQL数据问题的恢复
查看>>
手表定律
查看>>
天府网络安全实验室暨成都市网络安全创新服务中心成立
查看>>
今天的几点感悟_20160703
查看>>
Oracle RAC 体系结构--存储
查看>>
Html5 舞动的雨伞
查看>>
在im4java中使用GraphicsMagick
查看>>
参数嗅探(Parameter Sniffing)(1/2)
查看>>
重构——24将单项关联改为双向关联(Change Unidirectional Association to Bidirectional)...
查看>>
【百度地图API】圣诞节里不会迷路的麋鹿——驾车导航
查看>>
WPF 虚拟键盘
查看>>
储存卡无法打开专家教您怎么数据恢复
查看>>
彼得原理
查看>>
如何利用【百度地图API】,制作房产酒店地图?(下)——结合自己的数据库...
查看>>
[20171113]修改表结构删除列相关问题3.txt
查看>>
特征选择
查看>>