阿里云CentOS 7.5 安装nginx

1.添加nginx源

[root@iZ8vb2zp3hb2pskrfnjcrbZ ~]# rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm

2.安装nginx

[root@iZ8vb2zp3hb2pskrfnjcrbZ ~]# yum -y install nginx

3.启动nginx

# 设置开机启动
[root@iZ8vb2zp3hb2pskrfnjcrbZ ~]# systemctl enable nginx
# 启动nginx服务
[root@iZ8vb2zp3hb2pskrfnjcrbZ ~]# service nginx start
# 重新加载配置
[root@iZ8vb2zp3hb2pskrfnjcrbZ ~]# service nginx reload

4.说明

  1. nginx默认端口是80;
  2. 如果配置自定义端口,一定要在阿里云安全组添加端口

你可能感兴趣的:(Linux)