发布网友 发布时间:2022-02-26 21:26
共3个回答
懂视网 时间:2022-02-27 01:48
产品型号:Thinkpad E15
系统版本:centos8
通过yum安装nginx服务
[root@xuegod63 ~]# yum install -y epel-release #安装epel源
[root@xuegod63 ~]# yum install -y nginx #安装nginx
[root@xuegod63 ~]# systemctl start nginx #启动nginx
[root@xuegod63 ~]# iptables -F #清空防火墙
打开浏览器,访问虚拟机的IP地址:http://192.168.1.63/
可以访问,成功,说明nginx安装成功了。
总结:
1. yum install -y epel-release
2. yum install -y nginx
3. systemctl restart nginx
热心网友 时间:2022-02-26 22:56
apt install nginx 如果计算机里存在nginx的话ubuntu回提示你是否重新安装该软件包的热心网友 时间:2022-02-27 00:14
http://www.cnblogs.com/piscesLoveCc/p/5794926.html