阿里云CentOs7 服务器安装nginx

首先安装nginx

安装epel-release源并进行安装

yum install epel-release
yum update
yum install nginx

运行完成大致有这三样的输出结果
阿里云CentOs7 服务器安装nginx

阿里云CentOs7 服务器安装nginx

阿里云CentOs7 服务器安装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的访问页面

用命令查看
阿里云CentOs7 服务器安装nginx
来确认首先nginx已经启动
阿里云CentOs7 服务器安装nginx

其中你可能会访问不了自己的ip,阿里云服务器的安全组

阿里云CentOs7 服务器安装nginx

阿里云CentOs7 服务器安装nginx

阿里云CentOs7 服务器安装nginx

这样的即可完成

其中你可能还会遇到防火墙的问题
下面的命令就是用来解决防火墙的问题
···
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload
···

相关推荐