IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> 【Nginx】Nginx在Windows、Linux环境下的下载安装详细步骤 -> 正文阅读

[系统运维]【Nginx】Nginx在Windows、Linux环境下的下载安装详细步骤

Nginx下载安装

Nginx跨平台,在windows、Linux都可以安装

Nginx-windows安装

下载

官网下载:nginx: download

下载稳定版,不要下载测试版
在这里插入图片描述

安装

下载得到zip压缩包,解压、解压到任何地方都行,

解压后的目录:
在这里插入图片描述

conf 配置文件,我们常用的就是conf中的配置文件

contrib 存放工具组件文件

docs 存放文档 documents

html 放html页面文件

logs 日志文件

temp 临时文件

nginx.exe 启动文件

conf 里面的文件:

在这里插入图片描述

主要介绍一下nginx.conf:

server {
#这里的监听端口80端口,所以只要访问80端口就会被Nginx拦截
listen 80;
server_name localhost;

? …

}

#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;

    server {
    	#这里的监听端口80端口,所以只要访问80端口就会被Nginx拦截
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

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

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # 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;
    #    }
    #}

}

启动

方式一:双击nginx.exe

方式二:在nginx.exe目录中,通过cmd命令启动

注意:路径目录中有中文会报错; 如果遇到防火墙拦截,点击通过就行;

在这里插入图片描述

判断启动成功:

浏览器中输入localhost:80 或者localhost(localhost默认端口就是80端口),出现下面页面,就启动成功了。

在这里插入图片描述

关闭nginx:nginx -s stop

Nginx-Linux安装

下载

nginx: download

在这里插入图片描述

准备

将压缩包上传到Linux服务器上,安装Nginx之前,需要先给CentOS上安装gcc和 Nginx启动运行需要的依赖;

  • 查看Linux服务器上有没有已经安装好的Nginx,如果有的话,先卸载掉

    whereis nginx

在这里插入图片描述

输入nginx命令,确保没有nginx

在这里插入图片描述

  • CentOS上安装Nginx需要先安装gcc

    yum -y install gcc automake autoconf libtool make
    yum install gcc gcc-c++

在这里插入图片描述

  • 将下载的nginx压缩包(nginx.tar.gz)上传到linux指定目录;

    压缩文件存放在:/usr/local/src

在这里插入图片描述

  • /usr/local :用户级的软件目录,用来存放用户安装编译的软件,用户自己编译安装的软件也默认存放在这里

  • /usr/local/src :这个目录是存放用户编译软件所用的源码

  • 解压: tar -zxvf nginx压缩包

  • 解压后进入nginx文件目录:cd nginx-1.20.1

  • 安装依赖:yum -y install zlib zlib-devel openssl openssl-devel pcre pcre-devel

    由于Nginx需要依赖pcre库、zlib库、openssl库,所以安装Nginx前还需要先安装这些lib库依赖:

    依赖安装完成:

在这里插入图片描述

安装前的准备完成!

安装

yum安装:

  • yum install nginx yum安装如果缺少文件可能会安装不成功

手动安装:

  • 先执行config文件,让其自动完成配置:./configure --prefix=/usr/local/nginx

    • ./configure 是执行configure这个文件

    • 后面的 --prefix=/usr/local/nginx是指定配置安装的位置

  • 执行完后编译一下:make

  • 编译完后安装:make install

  • 查看是否安装成功:whereis nginx
    在这里插入图片描述

  • 进入nginx目录,sbin里面,就存放着nginx的启动文件

在这里插入图片描述

启动

  • 执行启动命令,在sbin目录下执行 ./nginx

  • 进入 /usr/local/nginx/conf 中,查看nginx.conf 文件: cat nginx.conf 监听的是80端口
    在这里插入图片描述

  • 验证启动是否成功:浏览器输入ip:80,看是否能访问到nginx欢迎页面,能够访问就说明成功;
    在这里插入图片描述

检查

如果不能访问到,检查:

  • 是否放开阿里云安全组80端口是否开放

    网络与安全-安全组-配置规则

    在这里插入图片描述

  • 检查Linux防火墙80端口有没有开

    linux防火墙命令:

    # 开启防火墙
    service firewalld start 
    # 重启防火墙
    service firewalld restart
    # 关闭防火墙
    service firewalld stop
    # 查看防火墙规则
    firewall-cmd --list-all
    # 查看钝口是否开放
    firewall-cmd --query-port=8080/tcp
    # 开放80端口
    firewall-cmd --permanent --add-port=80/tcp
    # 移除端口
    firewall-cmd --permanent --remove-port=8080/tcp
    
    # 重启防火墙(修改配置后需要重启防火墙)
    firewall-cmd --reload
    
    # 参数解释
    1 firewall-cmd : 是linux提供的操作firewall的一个工具
    2 --peramnent : 表示设置为持久的
    3 --add-port : 表示添加的端口
    

Nginx常用命令

1. 启动nginx:进入sbin中的nginx启动文件,cd /usr/local/nginx/sbin    ./nginx 
2. 停止nginx:      ./nginx -s stop
3. 安全退出nginx:  ./nginx -s quit
4. 重新加载配置文件:  nginx -s reload     如果改了配置文件,就要重新加载配置文件
5. 重新加载配置文件并启动nginx:cd/usr/local/nginx/sbin  ./nginx -s reload
6. 查看nginx进程: ps -ef | grep nginx 
  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2022-05-16 11:30:21  更:2022-05-16 11:30:36 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 16:36:25-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码