nginx源码编译安装

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx源码编译安装相关的知识,希望对你有一定的参考价值。

安装环境centos6.5


1.安装必须环境

nginx的编译需要c++,同时prce(重定向支持)和openssl(https支持)也需要安装。

  1. [[email protected] ~]# yum install gcc-c++  

  2. [[email protected] ~]# yum -y install pcre*  

  3. [[email protected] ~]# yum -y install openssl*  

2.下载nginx-1.9.9.tar.gz,可放在 /usr/local/ 目录下

  1. [[email protected] ~]# cd /usr/local/  

  2. [[email protected] local]# wget http://nginx.org/download/nginx-1.9.9.tar.gz  

3、创建Nginx的用户组及用户

    groupadd nginx

    useradd -s /sbin/nologin -M -g nginx nginx

4、编译及安装

  1. cd nginx-1.9.9

  2. ./configure --user=nginx --group=nginx

  3. 如果没有error信息,就可以执行下边的安装了:

    makemake install

5、防火墙端口打开80

    /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT #开启80端口

    /etc/rc.d/init.d/iptables save #保存配置

    /etc/rc.d/init.d/iptables restart #重启服务

6、启动nginx服务

    进入安装目录 /usr/local/nginx


    1. [[email protected] ~]# cd /usr/local/nginx  

    2. [[email protected] sbin]# ./nginx  

7、可以通过访问ip:80测试,看到页面这样的提示就说明安装成功



本文出自 “502涛哥” 博客,请务必保留此出处http://502taoge.blog.51cto.com/5329809/1930261

以上是关于nginx源码编译安装的主要内容,如果未能解决你的问题,请参考以下文章

CentOS 7 源码编译安装 Nginx

Nginx源码编译安装选项

nginx 编译安装详解

Nginx 源码编译安装

[学习笔记]在Linux中使用源码编译的方式安装Nginx

nginx源码编译安装及配置文件说明