查看系统环境版本
[root@taozi ~]# cat /etc/os-release
NAME="openEuler"
VERSION="21.09"
ID="openEuler"
VERSION_ID="21.09"
PRETTY_NAME="openEuler 21.09"
ANSI_COLOR="0;31"
首先配置本地yum源,搭建repo服务器
清理缓存,重新创建缓存
[root@taozi ~]# dnf clean all
[root@taozi ~]# dnf makecache
#安装nginx服务
[root@taozi ~]# dnf install nginx -y
查看安装后的rpm包
启动nginxi服务并设置开机自启
[root@taozi ~]# systemctl start nginx
[root@taozi ~]# systemctl enable nginx
查看服务状态
Nginx服务的配置文件
/etc/nginx/nginx.conf 主要的配置文件
/etc/nginx/conf.d 配置文件的辅助目录,也包含在主配置文件当中
/usr/share/nginx/html web网站的index文件所在目录
查看语法错误【syntax is ok】
# firewall-cmd --add-service=http --permanent
success
# firewall-cmd --reload
success