系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > server > anz > 详细页面

CentOS下 安装 Nginx的方法

时间:2019-12-22来源:系统城作者:电脑系统城

 官方文档:https://nginx.org/en/linux_packages.html#RHEL-CentOS

安装环境:Linux 服务器 CentOS 7.3、Root 权限

1、Install the prerequisites:

sudo yum install yum-utils

2、To set up the yum repository, create the file named /etc/yum.repos.d/nginx.repo with the following contents:

(注意替换 OS 版本:$releasever,如 centos 版本是 7,就替换成 7)

命令:

使用 vim 编辑 nginx.repo 文件

vim /etc/yum.repos.d/nginx.repo

设置 Nginx 的 yum 源:

将以下内容粘贴进 nginx.repo 文件中


 
  1. [nginx-stable]
  2. name=nginx stable repo
  3. baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
  4. gpgcheck=1
  5. enabled=1
  6. gpgkey=https://nginx.org/keys/nginx_signing.key
  7. module_hotfixes=true

输入vim命令 :wq 保存并退出

3、To install nginx, run the following command:

sudo yum install nginx
中途会输入 y 确认安装

4、When prompted to accept the GPG key, verify that the fingerprint matches 573B FD6B 3D8F BC64 1079 A6AB ABF5 BD82 7BD9 BF62, and if so, accept it.

最后会输出 fingerprint,如果和上面红色部分匹配,再输入 y 确认

5、启动 | 停止 | 重启 Nginx:


 
  1. # 启动
  2. systemctl start nginx.service
  3.  
  4. # 停止
  5. systemctl stop nginx.service
  6.  
  7. # 重启
  8. systemctl restart nginx.service

6、查看 Nginx 所有安装位置:

rpm 是 linux 的 rpm 包管理工具,-q 代表询问模式,-l 代表返回列表

rpm -ql nginx

7、Nginx 配置文件:


 
  1. /etc/nginx/conf.d
  2. /etc/nginx/conf.d/default.conf

总结

以上所述是小编给大家介绍的CentOS下 安装 Nginx的方法,希望对大家有所帮助!

分享到:

相关信息

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载