开发者社区> 问答> 正文

centos6.5 nginx1.8.1编译安装出错

经测试,6.5-7.2的系统,安装nginx1.8.1时均会出错,有时能成功装上,不知何故?
安装脚本为阿里云一键sh1.5:
tar zxvf nginx-1.8.1.tar.gz
cd nginx-1.8.1
./configure --user=www \
--group=www \
--prefix=/alidata/server/nginx \
--with-http_stub_status_module \
--without-http-cache \
--with-http_ssl_module \
--with-http_gzip_static_module
CPU_NUM=$(cat /proc/cpuinfo | grep processor | wc -l)
if [ $CPU_NUM -gt 1 ];then
    make -j$CPU_NUM
else
    make
fi
make install
chmod 775 /alidata/server/nginx/logs
chown -R www:www /alidata/server/nginx/logs
chmod -R 775 /alidata/www
chown -R www:www /alidata/www
cd ..
cp -fR ./nginx/config-nginx/* /alidata/server/nginx/conf/
sed -i 's/worker_processes  2/worker_processes  '"$CPU_NUM"'/' /alidata/server/nginx/conf/nginx.conf
chmod 755 /alidata/server/nginx/sbin/nginx
#/alidata/server/nginx/sbin/nginx
mv /alidata/server/nginx/conf/nginx /etc/init.d/
chmod +x /etc/init.d/nginx
/etc/init.d/nginx start
出错在make语句,如图:


展开
收起
秋日的私语 2016-12-12 12:47:54 3174 0
1 条回答
写回答
取消 提交回答
  • 有人说是pcre库问题,还有人说是ssl 版本问题,但通过yum还是wget下载编译安装,都一样在make时出错。


    -------------------------

    初始化系统盘,反复用这个脚本安装,有时又能正常通过。同样的系统,好奇怪。

    2016-12-12 12:49:44
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
CentOS Nginx PHP JAVA 多语言镜像使用手 立即下载
CentOS Nginx PHP JAVA多语言镜像使用手册 立即下载
《Nginx 代理系统常用手册》 立即下载