【问题标题】:How to install nginx without the modules in RedHat如何在没有 RedHat 模块的情况下安装 nginx
【发布时间】:2021-02-24 01:17:38
【问题描述】:

我按照以下步骤使用 Yum 安装 nginx:

  1. yum install epel-release
  2. yum install nginx

以下是nginx -V的输出:

built by gcc 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC)
built with OpenSSL 1.1.1c FIPS  28 May 2019 (running with OpenSSL 1.1.1g FIPS  21 Apr 2020)
TLS SNI support enabled
configure arguments: --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-ipv6 --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-stream_ssl_preread_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --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_degradation_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module=dynamic --with-http_auth_request_module --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=dynamic --with-stream_ssl_module --with-google_perftools_module --with-debug --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E'

如何在没有--with* 的情况下安装 nginx

【问题讨论】:

    标签: nginx redhat nginx-config nginx-module


    【解决方案1】:

    为此,您必须从源代码安装 nginx。 首先从http://nginx.org/en/download.html下载tar.gz文件,然后运行以下命令进行编译安装:

    1. ./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --user=nginx --group=nginx --build=CentOS --builddir=nginx-1.18.0 --with-http_gunzip_module --with-http_gzip_static_module 确保将 builddir 中的版本编辑为当前版本
    2. 运行编译:make
    3. 用于安装运行make install

    【讨论】:

    • 我在尝试在 Ubuntu Docker 容器上设置时看到了这个答案,我需要 apt-get install -y libpcre3-dev zlib1g-dev make gcc openssl libssl-dev 才能正确构建我的模块
    【解决方案2】:
    猜你喜欢
    • 2023-03-17
    • 2011-12-26
    • 1970-01-01
    • 2018-05-30
    • 1970-01-01
    • 2011-12-29
    • 2019-10-16
    • 2011-04-13
    • 2013-11-29
    相关资源
    最近更新 更多