(1)备份
1.1cd /etc/yum.repos.d
//以快速切换到软件源配置文件所在的目录
2.mkdir backup
3.mv *.repo backup
总结(2)下载阿里云的yum源 curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo curl -o /etc/yum.repos.d/epel.repo https://mirrors.aliyun.com/repo/epel-7.repo
3.清理缓存 yum clean all
4.生成缓存
yum makecache
5.列出yum源
yum repolist
安装nginx
yum -y install nginx
启动nginx
nginx
//验证:浏览器访问 ip
部署项目
1.安装上传工具
yum -y install lrzsz unzip
2.cd opt,上传文件
2.1上传项目 rz
3.解压
unzip 文件名
4.拷贝项目致nginx网站发布目录
cp -r 目录 /usr/share/nginx/html
项目部署完成