首页 行业资讯 宠物日常 宠物养护 宠物健康 宠物故事

nginx 开启 uptream 需要补丁吗

发布网友 发布时间:2022-04-22 10:10

我来回答

1个回答

热心网友 时间:2023-06-28 16:35

何升级Nginx新稳定版
我环境:
Ubuntu 12.04 LTS
Nginx 1.1.9
Nginx通apt-get式安装所我路径与载代码再编译、安装些我升级程
1.进入Downloads文件夹
cd /Downloads

2.载nginx-1.2.5.tar.gz文件Downloads文件夹
wget

3.解压nginx-1.2.5.tar.gz文件
tar zxvf nginx-1.2.5.tar.gz

4.进入ngixn-1.2.5文件夹
cd nginx-1.2.5

5.查看nginx原配置
nginx -V

面命令输:

--prefix=/etc/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-log-path=/var/log/nginx/access.log --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --with-debug --with-http_addition_mole --with-http_dav_mole --with-http_geoip_mole --with-http_gzip_static_mole --with-http_image_filter_mole --with-http_realip_mole --with-http_stub_status_mole --with-http_ssl_mole --with-http_sub_mole --with-http_xslt_mole --with-ipv6 --with-sha1=/usr/include/openssl --with-md5=/usr/include/openssl --with-mail --with-mail_ssl_mole

6.执行configure命令,面跟原nginx配置

./configure --prefix=/etc/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-log-path=/var/log/nginx/access.log --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --lock-path=/var/lock/nginx.lock --pid-path=/var/run/nginx.pid --with-debug --with-http_addition_mole --with-http_dav_mole --with-http_geoip_mole --with-http_gzip_static_mole --with-http_image_filter_mole --with-http_realip_mole --with-http_stub_status_mole --with-http_ssl_mole --with-http_sub_mole --with-http_xslt_mole --with-ipv6 --with-sha1=/usr/include/openssl --with-md5=/usr/include/openssl --with-mail --with-mail_ssl_mole

执行configure几错误:
a.配置 --with-http_xslt_mole 提示 the HTTP XSLT mole requires the libxml2/libxslt libraries
sudo apt-get install libxml2 libxml2-dev libxslt-dev

b.配置 --with-http_image_filter_mole 提示 the HTTP image filter mole requires the GD library.
sudo apt-get install libgd2-xpm libgd2-xpm-dev

c.配置 --with-http_geoip_mole 提示 the GeoIP mole requires the GeoIP library.
sudo apt-get install geoip-database libgeoip-dev

d.rewrite需要pcre支持, 错误提示:./configure: error: the HTTP rewrite mole requires the PCRE library.
apt-get install libpcre3 libpcre3-dev

7.再执行第6步configure命令
8.没提示缺少library, 执行make令命编译nginx, 编译objs目录nginx文件已编辑nginx程序
make

9.更改旧nginx程序名,并复制新程序,我旧nginx程序放/usr/sbin/目录
mv /usr/sbin/nginx /usr/sbin/nginx-20121122
cp objs/nginx /usr/sbin/nginx
/usr/sbin/nginx -t

执行/usr/sbin/nginx -t 命令检查配置文件并返面信息:
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

10.nginx-1.2.5目录执行面命令升级nginx
make upgrade

11.执行make upgrade错误:
make: /etc/nginx/sbin/nginx: Command not found
make: *** [upgrade] Error 127

12.用文本编辑器打修改nginx-1.2.5目录名Makefile文件upgrade节点/etc/nginx/sbin/nginx改/usr/sbin/nginx -t,保存关闭并重新执行make upgrade命令
13.执行nginx -v命令程序版本号已经1.2.5升级完毕.

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com