Centos 7 Yum安装 Nginx 图文教程

来源: 老季博客
日期: 2016-8-15
作者: 腾讯云/服务器VPS推荐评测/Vultr
阅读数: 81

About Nginx关于Nginx

Nginx is a high performance web server software. It is a much more flexible and lightweight program than Apache HTTP Server.

This tutorial will teach you how to install and start Nginx on your CentOS 7 server.

Nginx 是一个很强大的高性能Web和反向代理服务器,比Apache更轻更灵活。下面我们将教大家如何在Centos7下安装Nginx服务。

CentOS6 YUM源 安装 Nginx

Centos7 yum 安装Nginx:

1.添加Nginx Repository

yum install epel-release

2.安装Nginx

yum install nginx

3.启动Nginx服务:

systemctl start nginx

如果开着防火墙,请运行如下命令:

firewall-cmd --permanent --zone=public --add-service=http 
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload

4.访问IP地址:

http://IP/
Centos 7 Yum安装 Nginx 图文教程

如果能看到此页面则说明nginx运作正常!

5.开机自动启动Nginx

systemctl enable nginx
链接到文章: https://jiloc.com/42380.html

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注