centos安装Nginx的问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos安装Nginx的问题相关的知识,希望对你有一定的参考价值。
我在安装nginx的过程中出现了问题,我事先安装了pcre和zlib,安装路径分别是/usr/local/pcre 和 /usr/local/zlib,我在配置nginx的configure中是这样配置的./configure --prefix=/usr/local/nginx --with-pcre=/usr/local/pcre --with-zlib=/usr/local/zlib --with-http_stub_status_module --without-http_rewrite_module --without-http-cache,然后make报错,make -f objs/Makefile
make[1]: Entering directory `/usr/local/src/nginx-0.8.42'
cd /usr/local/pcre \
&& if [ -f Makefile ]; then make distclean; fi \
&& CC="gcc" CFLAGS="-O2 -fomit-frame-pointer -pipe " \
./configure --disable-shared
/bin/sh: line 2: ./configure: No such file or directory
make[1]: *** [/usr/local/pcre/Makefile] Error 127
make[1]: Leaving directory `/usr/local/src/nginx-0.8.42'
make: *** [build] Error 2
请问这个问题怎么解决啊??
没有./configure文件?
centOS安装nginx的一些常见问题
centOS安装nginx的常见问题
./configure:error:c compile cc is not found
当执行命令
./configure
编译安装nginx时报error:c compile cc is not found
解决:
执行命令
yum -y install gcc gcc-c++ autoconf automake make
等待系统安装gcc完毕后再次执行
./configure
nginx编译安装错误: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 by using --with-zlib=
在nginx中我们执行“./configure” 会提示 error: the HTTP gzip module requires the zlib library意思是告诉我们没有zlib library的支持, 碰到此类问题我们只要安装这个库就可以了
执行命令
yum install -y zlib-devel
等待安装完毕后再次执行即可
./configure
以上是关于centos安装Nginx的问题的主要内容,如果未能解决你的问题,请参考以下文章
如果我在centos服务器上删除/ etc / nginx,请安装nginx如何重新安装它我是centos和nginx的新手