博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1.linux源码安装nginx
阅读量:4977 次
发布时间:2019-06-12

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

  1. 从官网下载nginx.tar.gz源码包
  2. 拷贝至Linux系统下进行解压 tar -zxvf nginx.tar.gz
  3. 进入解压后的目录,需要./configure,此步骤会报多个错,比如没有安装gcc时,要求安装gcc等
  • ./confiure

在./configure时,可能会报错,如下:./configure: error: the HTTP rewrite module requires the PCRE library.You can either disable the module by using --without-http_rewrite_module option, or install the PCRE library into the system, or build the PCRE library statically from the source with nginx by using --with-pcre=<path> option.

  • 解决办法是安装pcre-devel这个包,yum -y install pcre-devel   为了重写rewrite
  • 安装了上面这个包后,还会报错,提示./configure: error: the HTTP gzip module requires the zlib library. You can either disable the module by using --without-http_gzip_module option, or install the zlib library into the system, or build the zlib library statically from the source with nginx 
  • 此时需要安装zlib-devel包,yum -y install  zlib-devel   为了gzip压缩

  4.make

  5.make install 或者4和5结合在一块,make && make install

  6.通过编译安装的程序都会保存在/usr/local目录下,如下:

  • [root@localhost nginx-1.14.0]# ls /usr/local/nginx/

    conf html logs sbin
    [root@localhost nginx-1.14.0]#

  7.运行命令 ./sbin/nginx就会启动nginx,通过ps -ef | grep nginx 或者通过netstat -anpl | grep 80可以查看进程或者端口状态

  • 访问 firefox localhost:80 ,如果出现如下界面,就表示nginx启动成功:
  •  

转载于:https://www.cnblogs.com/mmdln/p/8947139.html

你可能感兴趣的文章
Get Luffy Out poj 2723 Tarjan+2-SAT
查看>>
Wild Number (Standard IO)
查看>>
在Visual Studio 2005中调试SQL Server 2005的存储过程
查看>>
浅析C#基于TCP协议的SCOKET通信
查看>>
Python 元组
查看>>
[凯立德]2013.12.17凯立德发布秋季版(2F21J0E)最新增量包SP1
查看>>
【转】Spring MySQL 事务隔离级别,传播机制,savepoint
查看>>
【2017-3-11】SQL Server *** T—sql语句
查看>>
关于Android中设置闹钟的相对比较完善的解决方案
查看>>
Swift Core Data 图片存储与读取Demo
查看>>
查询sql如何使 SQL Server高效 --T-SQL(ITPUT 讨论汇总)
查看>>
文件资源使用Texture管理cocosBuilder项目资源:纹理文件使用(TexturePacker)
查看>>
Java Web应用CAS Client端的配置详解
查看>>
Netty:EventLoopGroup
查看>>
A*算法(附c源码)
查看>>
探析Spring AOP(三):Spring AOP的底层实现原理
查看>>
TMC首秀:写作带给我生命的影响与感动
查看>>
似乎在梦中见过的样子(Bzoj3620)
查看>>
最长递减子序列(转载)
查看>>
Reconstruction(三维重建)文件被修改
查看>>