本文介绍在CentOS 8操作系统中安装Nginx的方法、调整防火墙。与Apache相比,Nginx可以处理大量并发连接,并且每个连接的内存占用量较小。在继续之前,请确保你以具有sudo特权的用户身份登录,并且你没有在端口80或443上运行Apache或任何其他进程。
- 安装Nginx
yum install nginx
- 安装完成后,使用以下命令启用并启动Nginx服务:
systemctl enable nginx
systemctl start nginx
- 要验证服务是否正在运行,请检查其状态:
systemctl status nginx
- 调整防火墙(Firewall)
FirewallD是Centos 8中的默认防火墙解决方案。
在安装过程中,Nginx使用预定义的规则创建防火墙服务文件,以允许访问HTTP(80)和HTTPS(443)端口。
使用以下命令永久打开必要的端口:
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload
网友评论