欢迎光临
我们一直在努力

CentOS7下安装Nginx

第一步:下载文件:Nginx下载网址
第二步:上传到相关目录中,解压 tar -zxvf nginx.tar.gz (下载后修改名字是nginx.tar.gz,基本上会带有版本号)
第三步:./configure [–prefix]指定文件目录,不指定目录默认安装在系统目录下。

  1. 执行上面命令可能会出现的错误信息:
    checking for OS

    • Linux 2.6.32-431.el6.x86_64 x86_64
      checking for C compiler … not found
      则需要执行以下命令:

                      **yum -y install gcc gcc-c++ autoconf automake make**

当在执行./configure [–prefix]时,会出现2,

  1. 编译安装nginx需要pcre包,未安装会有如下提示:
    ./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包,pcre-devel。使用yum安装即可:(以下命令还带有ssl、zlib等依赖的安装)

                        **yum -y install zlib zlib-devel openssl openssl--devel pcre pcre-devel**

第四步:make && make install

执行命令启动和停止命令进行测试

  1. sbin/nginx
  2. ./nginx -s stop
赞(0)
【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的主机测评结果和优惠活动,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。