linux 安装nginx

Linux  安装nginx教程

一、下载官网 

下载放在 usr/local  下面 解压 tar -zxvf nginx-1.18.0.tar.gz

http://nginx.org/en/download.html

二、安装前需要安装其他依赖

1

yum install gcc gcc-c++ make automake autoconf libtool pcre* zlib openssl openssl-devel

三、安装 编译

进入解压后地 nginx目录 nginx-1.18.0

 1执行 

./configure --prefix=/usr/local/nginx

  检查

 2执行  # make && make install   编译 并且安装 

 报错情况1:修改文件  /usr/local/nginx-1.10.2/objs/Makefile  

CFLAGS = -pipe -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g

去掉  -Werror

CFLAGS =  -pipe  -O -W -Wall -Wpointer-arith -Wno-unused -g 

报错情况2:

 进入文件:/usr/local/nginx-1.10.2/src/os/unix/ngx_user.c

再次执行 :# make && make install

 然后 usr/local 会多出一个nginx 文件夹 

四、启动nginx并检查是否成功

 1 进入 /usr/local/nginx/sbin

 2 执行   ./nginx

五、防火墙开放端口 这个很重要

  1 firewall-cmd --list-all  或者 firewall-cmd --zone=public --list-ports

  2 添加端口 白名单 firewall-cmd --permanent --zone=public --add-port=8080/tcp

  3 重启 防火墙  firewall-cmd --reload

这里有个参考地址:https://www.cnblogs.com/sucretan2010/p/10835175.html


六、访问地址  成功啦!

七、nginx 常用命令

必须进入安装的nginx/sbin/   下面执行

  1.    ./nginx 重启

  2.   ./nginx -s stop  停止  或者 kill -9 进程号

  3.   ./nginx -s reload  重新加载

  4.   ./nginx -v 查看版本号


#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;
     gzip  on;
    gzip_static on;
    gzip_min_length 10k;
    gzip_buffers 4 16k;
    gzip_comp_level 6;
    gzip_types *;
    gzip_disable "MSIE [1-6]\.";
    gzip_vary on;

    server {
        listen       80;
        server_name  IP;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

	location / {
	    root  /home/d2/dist/;
            index index.html index.htm;
		}
	location /course/ {
            alias /home/course/dist/;
            index index.html index.htm;
       	}
	location /d2/ {
            alias /home/d2/dist/;
            index index.html index.htm;
       	}
	location /love/ {
            alias /home/love/;
            index index.html index.htm;
       	}
	location /jwechat/ {
            alias /home/d2/jwechat/;
            index index.html index.htm;
       	}

	location /dd/ {
            alias /home/d2/dists2/;
            index index.html index.htm;
       	}
	location /static/ {
            alias /home/static/;
            index index.html index.htm;
       	}
	location /api/ {
            proxy_pass http://127.0.0.1:8082/api/;
            break;
        }
	location /xxl-job-admin {
                proxy_pass http://127.0.0.1:8081/xxl-job-admin;
                break;
     	}
	location /dapi/ {
            proxy_pass http://127.0.0.1:8088/api/;
            break;
        }
}
    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

Linux安装Nginx有几种方法。一种方法是通过包管理器进行安装。您可以使用命令"yum install nginx"来安装最新的稳定版本,默认情况下安装的是Nginx 1.20.2版本。另外一种方法是通过源码编译安装Nginx。这需要下载Nginx安装包并解压缩,然后进行依赖安装和配置。具体步骤如下: 1. 下载Nginx安装包,并解压缩。 2. 安装Nginx的依赖包。 3. 进入解压缩后的Nginx目录,执行"./configure"命令进行配置。 4. 执行"make"命令进行编译。 5. 执行"make install"命令进行安装。 6. 修改Nginx的配置文件"nginx.conf",可以设置用户和用户组等参数。 7. 启动Nginx,可以使用命令"nginx"。 8. 停止或重启Nginx,可以使用命令"nginx -s stop"和"nginx -s reload"。 9. 设置Nginx开机自启动,可以将Nginx添加到系统的启动项中。 10. 配置防火墙,确保80端口开放以允许Nginx的HTTP访问。 根据您的需求和喜好,您可以选择适合您的安装方法。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [Linux安装nginx详细步骤](https://blog.csdn.net/adaizzz/article/details/126669430)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *2* *3* [linux 系统下四种nginx安装方法](https://blog.csdn.net/shallow72/article/details/123878716)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值