在Ubuntu上离线安装Nginx的踩坑经历

梦想不抛弃苦心追求的人,只要不停止追求,你们会沐浴在梦想的光辉之中。再美好的梦想与目标,再完美的计划和方案,如果不能尽快在行动中落实,最终只能是纸上谈兵,空想一番。只要瞄准了大方向,坚持不懈地做下去,才能够扫除挡在梦想前面的障碍,实现美好的人生蓝图。在Ubuntu上离线安装Nginx的踩坑经历,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

首先在Nginx官网的下载地址:http://nginx.org/download/

任一下载版本,最好较新的版本。

#解压

tar -zxvf nginx-1.17.8.tar.gz

#进入目录

cd nginx-1.17.8

#选择安装目录和配置选项

./configure \
--prefix=/usr/local/nginx-1.17.8 \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/var/tmp/nginx/client \
--http-proxy-temp-path=/var/tmp/nginx/proxy \
--http-fastcgi-temp-path=/var/tmp/nginx/fcgi \
--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \
--http-scgi-temp-path=/var/tmp/nginx/scgi \
--user=nginx \
--group=nginx \
--with-pcre \
--with-http_v2_module \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_stub_status_module \
--with-http_auth_request_module \
--with-mail \
--with-mail_ssl_module \
--with-file-aio \
--with-ipv6 \
--with-http_v2_module \
--with-threads \
--with-stream \
--with-stream_ssl_module

#无意外的话是正常安装了,但也有个别情况,出现了“error: the HTTP rewrite module requires the PCRE library”错误。网上解决方案是:

sudo apt-get update
sudo apt-get install libpcre3 libpcre3-dev

在Ubuntu上离线安装Nginx的踩坑经历在Ubuntu上离线安装Nginx的踩坑经历

 #但是也有安装不成功的时候,之后还使用了apt-get的命令安装Nginx也装不成功:

apt-get install nginx

#无奈只能根据提示自行安装PCRE,PCRE的官网地址:http://www.pcre.org,在官网可以找到其在github的下载地址:https://github.com/PhilipHazel/pcre2/releases,于是下载了pcre2-10.38.tar.gz

#解压

tar -zxvf pcre2-10.38.tar.gz

#进入目录

cd pcre2-10.38

#选择安装目录

./configure --prefix=/usr/local/pcre2-10.38

#编译

make

#安装

make install

#安装成功之后,重新进入nginx解压包目录下,根据错误信息,需要增加参数,指定PCRE library的路经地址:“–with-pcre \”改成:“–with-pcre=../pcre2-10.38 \”,注意要写成与nginx安装目录的相对路径,不然报另一个错,又得重新执行“选择安装目录命令”

cd nginx-1.17.8
./configure \
--prefix=/usr/local/nginx-1.17.8 \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/var/tmp/nginx/client \
--http-proxy-temp-path=/var/tmp/nginx/proxy \
--http-fastcgi-temp-path=/var/tmp/nginx/fcgi \
--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \
--http-scgi-temp-path=/var/tmp/nginx/scgi \
--user=nginx \
--group=nginx \
--with-pcre=../pcre2-10.38 \
--with-http_v2_module \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_stub_status_module \
--with-http_auth_request_module \
--with-mail \
--with-mail_ssl_module \
--with-file-aio \
--with-ipv6 \
--with-http_v2_module \
--with-threads \
--with-stream \
--with-stream_ssl_module

#编译

make

#这时出现了“fatal error: pcre.h: No such file or directory”错误,原来是下错了PCRE版本

在Ubuntu上离线安装Nginx的踩坑经历在Ubuntu上离线安装Nginx的踩坑经历

 #正确的PCRE下载地址为以下链接,于是下载了pcre-8.35.tar.gz,回到nginx解压目录的上一级目录

PCRE – Browse /pcre at SourceForge.netPERL 5 regular expression pattern matchinghttps://sourceforge.net/projects/pcre/files/pcre/#解压

tar -zxvf pcre-8.35.tar.gz

#进入目录

cd pcre-8.35

#配置

./configure

#编译

make

#安装

make install

#安装成功之后,重新进入nginx解压包目录下,根据错误信息,需要增加参数,指定PCRE library的路经地址:“–with-pcre \”改成:“–with-pcre=../pcre-8.35 \

cd nginx-1.17.8
./configure \
--prefix=/usr/local/nginx-1.17.8 \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-client-body-temp-path=/var/tmp/nginx/client \
--http-proxy-temp-path=/var/tmp/nginx/proxy \
--http-fastcgi-temp-path=/var/tmp/nginx/fcgi \
--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \
--http-scgi-temp-path=/var/tmp/nginx/scgi \
--user=nginx \
--group=nginx \
--with-pcre=../pcre-8.35 \
--with-http_v2_module \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_stub_status_module \
--with-http_auth_request_module \
--with-mail \
--with-mail_ssl_module \
--with-file-aio \
--with-ipv6 \
--with-http_v2_module \
--with-threads \
--with-stream \
--with-stream_ssl_module

#编译,此时可以正确编译了

make

#安装

make install

#验证安装成功

nginx -v

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/151165.html

(0)
飞熊的头像飞熊bm

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!