Nginx
安装与启动
一、CentOS
系统安装 Nginx
-
查看操作系统发行版本
cat /etc/os-release
-
安装
yum
工具sudo dnf install yum
-
更新系统软件包
sudo yum update
-
安装
EPEL
存储库# EPEL存储库作用:1.提供更多软件包; 2.保持软件更新; 3.满足特定需求 sudo yum install epel-release
-
安装
Nginx
sudo yum install nginx
-
启动
Nginx
服务# 启动Nginx服务 sudo systemctl start nginx # 设置Nginx服务开机自启 sudo systemctl enable nginx
-
关闭防火墙
# 关闭防火墙 systemctl stop firewalld # 关闭防火墙开机自启 systemctl disable firewalld
-
查看
Nginx
服务是否启动# 如果一切正常,输出应该是“Active: active (running)”或者类似的信息。 sudo systemctl status nginx
二、Ubuntu
系统安装 Nginx
-
更新系统软件包
sudo apt update
-
安装
Nginx
sudo apt install nginx
-
启动
Nginx
服务# 启动Nginx服务 sudo systemctl status nginx # 设置Nginx服务开机自启 sudo systemctl enable nginx
-
查看
Nginx
服务是否启动# 如果一切正常,输出应该是“Active: active (running)”或者类似的信息。 sudo systemctl status nginx