标签:not The isa x86_64 com 下载文件 pcr res evel
第一步:下载文件:Nginx下载网址执行上面命令可能会出现的错误信息:
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,
编译安装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
执行命令启动和停止命令进行测试
标签:not The isa x86_64 com 下载文件 pcr res evel
原文地址:https://blog.51cto.com/2841561/2407245