ubuntu 编译安装 Nginx1.20.1
下载文件
编译安装 nginx 需要 pcre 和 openssl 两个库,先下载下来
pcre8.45 下载
openssl1.1.1 下载
nginx 官网
创建一个用户
首先创建一个用户
useradd www
安装 nginx 必要的库
apt-get install gcc g++ autoconf make automake libtool libperl-dev zlib1g-dev libxslt-dev libgd-dev libgeoip-dev libgoogle-perftools-dev libncurses-dev -y
进行预编译
在这里我是把 openssl 和 pcre 源文件放到/root/source
下了
./configure \ --prefix=/usr/local/nginx \ --user=www \ --group=www \ --with-threads \ --with-file-aio \ --with-http_ssl_module \ --with-http_v2_module \ --with-http_realip_module \ --with-http_addition_module \ --with-http_xslt_module \ --with-http_image_filter_module \ --with-http_geoip_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_auth_request_module \ --with-http_random_index_module \ --with-http_secure_link_module \ --with-http_slice_module \ --with-http_degradation_module \ --with-http_stub_status_module \ --with-http_perl_module \ --with-mail --with-stream \ --with-stream_ssl_module \ --with-stream_realip_module \ --with-google_perftools_module \ --with-openssl=/root/source/openssl-1.1.1k \ --with-pcre=/root/source/pcre-8.45 \ --with-debug
显示如下内容则表明成功预编译
Configuration summary + using threads + using PCRE library: /root/source/pcre-8.45 + using OpenSSL library: /root/source/openssl-1.1.1k + using system zlib library nginx path prefix: "/usr/local/nginx" nginx binary file: "/usr/local/nginx/sbin/nginx" nginx modules path: "/usr/local/nginx/modules" nginx configuration prefix: "/usr/local/nginx/conf" nginx configuration file: "/usr/local/nginx/conf/nginx.conf" nginx pid file: "/usr/local/nginx/logs/nginx.pid" nginx error log file: "/usr/local/nginx/logs/error.log" nginx http access log file: "/usr/local/nginx/logs/access.log" nginx http client request body temporary files: "client_body_temp" nginx http proxy temporary files: "proxy_temp" nginx http fastcgi temporary files: "fastcgi_temp" nginx http uwsgi temporary files: "uwsgi_temp" nginx http scgi temporary files: "scgi_temp"
编译安装
make -j && make install
等待片刻就安装好了