Nginx 源码编译安装
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx 源码编译安装相关的知识,希望对你有一定的参考价值。
nginx 源码编译安装环境
Centos7
Nginx1.8.1 下载地址:http://nginx.org/download/ 选择自己想要的版本
我这边使用1.8.1,下载地址:http://nginx.org/download/nginx-1.8.1.tar.gz
1、编译前安装环境
[[email protected]_30 ~]# yum groupinstall "Development Tools" -y #安装开发工具包 [[email protected]_30 ~]# yum install openssl-devel pcre-devel #ssl、pcre的devel包
2、下载Nginx
[[email protected]_30 ~]# cd /usr/local/src/ #进入src目录 [[email protected]_30 src]# wget #下载Nginx [[email protected]_30 src]# tar xf nginx-1.8.1.tar.gz #解压缩 [[email protected]_30 src]# cd nginx-1.8.1/ #进入nginx-1.8.1目录 [[email protected]_30 nginx-1.8.1]# ./configure \ #编译参数,按照自己的需要 --prefix=/etc/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/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_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-threads --with-file-aio --with-ipv6 [[email protected]_30 nginx-1.8.1]# make && make install [[email protected]_30 nginx-1.8.1]# useradd -r nginx #创建Nginx,-r指定为系统用户 [[email protected]_30 nginx-1.8.1]# nginx -t #测试语法是否用问题 nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful [[email protected]_30 nginx-1.8.1]# /usr/sbin/nginx #启动Nginx [[email protected]_30 nginx-1.8.1]# ss -tnl| grep 80 #查看是否成功 LISTEN 0 128 *:80 *:* [[email protected]_30 nginx-1.8.1]# ifconfig | grep "inet 192.168" #查看地址 inet 192.168.11.30 netmask 255.255.255.0 broadcast 192.168.11.255 [[email protected]_30 nginx-1.8.1]# iptables -F #清楚防火墙规则,要么自己增加80端口 [[email protected]_30 nginx-1.8.1]# setenforce 0 #设定selinux为permissive
访问试一试看看:
本文出自 “SunshineBoySZF” 博客,请务必保留此出处http://sunshineboyszf.blog.51cto.com/12087328/1861220
以上是关于Nginx 源码编译安装的主要内容,如果未能解决你的问题,请参考以下文章