我的编程空间,编程开发者的网络收藏夹
学习永远不晚

CentOS系统rpm安装Nginx和配置

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

CentOS系统rpm安装Nginx和配置

CentOS rpm安装Nginx和配置

官方下载地址: http://nginx.org/en/download.html

介绍

Nginx(“engine x”)是一款由俄罗斯的程序设计师Igor Sysoev所开发高性能的 Web和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器。

rpm包安装


#安装nginx,rpm安装
#rpm安装nginx包
rpm -Uvh --force --nodeps nginx-1.16.1-1.el7.ngx.x86_64.rpm

#查看启动状态
systemctl status nginx

显示如下:
● nginx.service - nginx - high performance web server
   Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled)
   Active: active (running) since 五 2021-11-26 11:12:41 CST; 5 days ago
     Docs: http://nginx.org/en/docs/
  Process: 1379 ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf (code=exited, status=0/SUCCESS)
 Main PID: 1543 (nginx)
    Tasks: 5
   CGroup: /system.slice/nginx.service
           ├─1543 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
           ├─1544 nginx: worker process
           ├─1546 nginx: worker process
           ├─1547 nginx: worker process
           └─1548 nginx: worker process

11月 26 11:12:41 liang systemd[1]: Starting nginx - high performance web server...
11月 26 11:12:41 liang systemd[1]: Started nginx - high performance web server.

#启动
systemctl start nginx

#重启
systemctl restart nginx

#开机自启动服务
systemctl enable nginx

#查看开机启动状态 enabled:开启, disabled:关闭
systemctl is-enabled nginx

安装完后在 修改 /etc/nginx/conf.d/default.conf 配置文件,参考内容如下:


vim /etc/nginx/conf.d/default.conf

server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;


     location /ui {
        alias   /data/dist;
        index  index.html index.htm;
     }
     
     location /file/ {
         root   /home/data/;
        index  index.html index.htm;
     }    
    # websocket配置wss
    location /liangws/ {
        proxy_pass http://192.168.0.19:8080/;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_set_header Remote_addr $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_read_timeout 600s;
    }

    location ~ /gat {
        proxy_set_header Host  $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://localhost:18080 ;
    }

    #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   /usr/share/nginx/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;
    #}
}

注意:静态文件下载,需要依赖nginx,我们需要将这些文件放到 nginx配置文件中的 /home/data/aaa 对应的目录下。

启动服务配置


cat /usr/lib/systemd/system/nginx.service

[Unit]
Description=nginx - high performance web server
Documentation=http://nginx.org/en/docs/
After=network-online.target remote-fs.target nss-lookup.target
Wants=network-online.target

[Service]
Type=forking
PIDFile=/var/run/nginx.pid
ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s TERM $MAINPID

[Install]
WantedBy=multi-user.target

到此这篇关于CentOS系统rpm安装Nginx和配置的文章就介绍到这了,更多相关CentOS rpm安装Nginx内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

CentOS系统rpm安装Nginx和配置

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

CentOS系统rpm安装Nginx和配置的示例分析

小编给大家分享一下CentOS系统rpm安装Nginx和配置的示例分析,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!CentOS rpm安装Nginx和配置官方下载地址: http://nginx.org/en/downl
2023-06-22

CentOS怎么安装配置Nginx

要在CentOS上安装和配置Nginx,可以按照以下步骤进行操作:1. 更新系统软件包:```sudo yum update```2. 安装Epel软件仓库:```sudo yum install epel-release```3. 安装N
2023-08-24

Linux系统上怎么安装和配置Nginx

要在Linux系统上安装和配置Nginx,可以按照以下步骤进行操作:安装Nginx:在大多数Linux发行版上,可以使用包管理工具来安装Nginx。例如在Ubuntu上可以使用以下命令:sudo apt updatesudo apt i
Linux系统上怎么安装和配置Nginx
2024-04-03

如何在CentOS中安装和配置Nginx服务器

在CentOS中安装和配置Nginx服务器的步骤如下:更新系统:首先确保系统已更新到最新版本,可以通过以下命令来更新系统:sudo yum update安装Nginx:使用以下命令安装Nginx:sudo yum install nginx
如何在CentOS中安装和配置Nginx服务器
2024-03-12

CentOS系统怎么下安装和配置Telent服务

这篇文章主要介绍“CentOS系统怎么下安装和配置Telent服务”,在日常操作中,相信很多人在CentOS系统怎么下安装和配置Telent服务问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”CentOS系统怎
2023-06-10

CentOS中怎么安装配置proftp系统

本篇文章为大家展示了CentOS中怎么安装配置proftp系统,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。CentOS安装配置proftp系统软件文件/usr/local/pureftpd/sbi
2023-06-16

Debian系统上怎么安装和配置Nginx服务器

要在Debian系统上安装和配置Nginx服务器,可以按照以下步骤进行:更新软件包列表:运行以下命令来确保软件包列表是最新的:sudo apt update安装Nginx:运行以下命令来安装Nginx服务器:sudo apt insta
Debian系统上怎么安装和配置Nginx服务器
2024-04-09

CentOS系统上怎么安装和配置Apache服务器

在CentOS系统上安装和配置Apache服务器的步骤如下:安装Apache服务器:在终端中输入以下命令安装Apache服务器:sudo yum install httpd启动Apache服务器:安装完成后,输入以下命令启动Apache
CentOS系统上怎么安装和配置Apache服务器
2024-04-09

CentOS系统上怎么安装和配置MariaDB数据库

在CentOS系统上安装和配置MariaDB数据库可以通过以下步骤完成:安装MariaDB:首先,使用以下命令安装MariaDB:sudo yum install mariadb-server mariadb启动MariaDB:安装完成
CentOS系统上怎么安装和配置MariaDB数据库
2024-04-09

CentOS 6.5系统中如何安装配置VNC

这篇文章主要介绍了CentOS 6.5系统中如何安装配置VNC,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。一、安装 VNC  默认情况下,CentOS 6.4 是没有安装的
2023-06-10

CentOS系统下安装及配置JDK介绍

目录前言检查并卸载 OpenJDK使用下载好的压缩包方式安装 JDKJDK 环境配置测试配置是否成功通过 yum 命令安装 JDK通过 rpm 命令安装 JDK前言 说到 JDK 就不得不提一下一道老掉牙的面试题: JDK(java Dev
2022-06-04

CentOS系统下如何安装及配置JDK

这篇文章主要为大家展示了“CentOS系统下如何安装及配置JDK”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“CentOS系统下如何安装及配置JDK”这篇文章吧。前言说到 JDK 就不得不提一下
2023-06-22

MacOS下安装和配置Nginx

一、安装brew /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 按回车后,根据提示操作:输入镜像序号 输入Y,
2023-08-24

安装配置gunicorn和NGINX的

博客写得差不多了,打算部署到云上因为速度的关系,不打算部署在AWS上,于是申请了阿里云,环境是上篇文章提到的CentOS 7 64位安装和配置好Python3和MySQL,又稍微了解点web服务器的知识后,打算按这里的方法进行部署,思路是用
2023-01-31

CentOS系统下Redis安装和自启动配置的步骤

一. 安装Redis Redis的安装其实相当简单,推荐的方式是下载redis的源码,并在本机编译后安装。 首次进入主文件夹的下载目录下,执行wget下载源码[zhxilin@localhost ~]$ cd 下载 [zhxilin@loc
2022-06-04

CentOS怎样配置安装相关常用系统

CentOS怎样配置安装相关常用系统,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。CentOS配置安装常用系统,于是我学习研究了CentOS配置安装asp.net运行,在这
2023-06-16

编程热搜

目录