阿里云CentOs7 服务器安装nginx
首先安装nginx
安装epel-release源并进行安装
yum install epel-release yum update yum install nginx
运行完成大致有这三样的输出结果
防火墙相关操作
systemctl start nginx #启动 systemctl stop nginx #停止 systemctl restart nginx #重启 systemctl status nginx #查看运行状态 systemctl enable nginx #开机启动
设置防火墙
firewall-cmd --permanent --zone=public --add-service=http firewall-cmd --permanent --zone=public --add-service=https firewall-cmd --reload
nginx启动和关闭
pkill -f nginx #关闭 nginx #启动
安装完成之后就可输入自己IP 看到nginx的访问页面
用命令查看
来确认首先nginx已经启动
其中你可能会访问不了自己的ip,阿里云服务器的安全组
这样的即可完成
其中你可能还会遇到防火墙的问题
下面的命令就是用来解决防火墙的问题
···
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload
···
相关推荐
CosEmon 2020-11-13
lihongtai 2020-11-09
sqisydream 2020-11-11
fjlmcy 2020-10-31
visionarywind 2020-10-31
特立独行 2020-10-30
Hitpoint云计算 2020-10-30
sqsfjsjlpf 2020-10-29
平凡的程序员 2020-10-15
yunna0 2020-09-23
OpenCDN网站加速 2020-09-21
82453961 2020-09-21
qual0 2020-09-21
mysteryrat 2020-09-21
Liucute 2020-09-21
古影轩 2020-09-17
aolia000 2020-09-11
罗忠浩 2020-08-16