yum配置阿里源
在linux中安装软件一般使用yum来安装软件,yum之所以能够非常方便的安装各种软件,是因为系统配置了yum源,这个源记录了众多软件下载路径。如果安装的软件,提示没有安装包。这个时候就要考虑更新或新增yum源。下面介绍配置阿里的yum源。
第一步:先安装一个工具叫wget (如果有就不用装了)
yum install wget -y
第二步:备份旧的的yum源配置文件
cd /etc/yum.repos.d/
mkdir repo-back
mv ./* ./repo-back/
第三步:下载阿里云yum源
阿里云社区网址: https://developer.aliyun.com/mirror/
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
第四步:下载epel源
wget -O /etc/yum.repos.d/epel.repo https://mirrors.aliyun.com/repo/epel-7.repo
结束:可以安装软件了
eg: yum install nginx -y
启动nginx
systemctl start nginx