当前位置:服务器 > > 正文

centos7 离线安装nginx(centos8安装nginx1.9.1的详细过程)

时间:2021-10-12 00:23:10类别:服务器

centos7 离线安装nginx

centos8安装nginx1.9.1的详细过程

1.17.9 更香,真的

nginx下载地址:https://nginx.org/download/

1.下载nginx

wget https://nginx.org/download/nginx-1.9.9.tar.gz

2.解压nginx

tar -zxvf nginx-1.9.9.tar.gz

3.安装依赖包

yum -y install gcc gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel

4.配置nginx

  • cd nginx-1.9.9/
    ./configure \--prefix=/usr/local/nginx \--with-http_ssl_module \--conf-path=/usr/local/nginx/conf/nginx.conf \--pid-path=/usr/local/nginx/conf/nginx.pid \--lock-path=/var/lock/nginx.lock \--error-log-path=/var/logs/nginx/error.log \--http-log-path=/var/logs/nginx/access.log \--with-http_gzip_static_module \--http-client-body-temp-path=/var/temp/nginx/client \--http-proxy-temp-path=/var/temp/nginx/proxy \--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \--http-scgi-temp-path=/var/temp/nginx/scgi
    
  • 5.编辑部分配置,为下面执行make命令做准备

    编辑文件 nginx 根目录:objs/Makefile

    centos7 离线安装nginx(centos8安装nginx1.9.1的详细过程)

    centos7 离线安装nginx(centos8安装nginx1.9.1的详细过程)

    编辑文件:src/os/unix/ngx_user.c

    centos7 离线安装nginx(centos8安装nginx1.9.1的详细过程)

    6.编译

    make

    7.安装

    make install

    8.开放80端口

    检查80端口是否开放:

    firewall-cmd --zone=public --list-ports

    centos7 离线安装nginx(centos8安装nginx1.9.1的详细过程)

    如果没有 80/tcp 执行以下命令,开放端口

  • #永久开放80端口
    firewall-cmd --zone=public --add-port=80/tcp --permanent
    #更新防火墙规则
    firewall-cmd --reload
    
  • 9.启动nginx

    /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

    10.web访问

    centos7 离线安装nginx(centos8安装nginx1.9.1的详细过程)

    到此这篇关于centos8安装nginx1.9.1的详细过程的文章就介绍到这了,更多相关centos8安装nginx1.9.1内容请搜索开心学习网以前的文章或继续浏览下面的相关文章希望大家以后多多支持开心学习网!

    标签:
    上一篇下一篇

    猜您喜欢

    热门推荐