linux更换yum源为阿里云源

时间:2024-04-10 11:29:03

1.找到yum源得老家备份自己原有得yum源

cd /etc/yum.repos.d/

linux更换yum源为阿里云源
2.找到阿里巴巴得yum源网站:

https://developer.aliyun.com/mirror/

linux更换yum源为阿里云源

3.找到centos标签点击进去
linux更换yum源为阿里云源
4.找到这行命令复制下来到linux中下载下来

sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

linux更换yum源为阿里云源
5.清空之前得缓存

sudo yum clean all

linux更换yum源为阿里云源
6.继续去上边得地方找第三方库epel

linux更换yum源为阿里云源
7.在linux上下载下来

wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo

linux更换yum源为阿里云源
8.生成yum缓存,便于以后下载加速

sudo yum makecache

linux更换yum源为阿里云源
实例:
yum下载redis

sudo yum install redis -y

linux更换yum源为阿里云源
启动redis

sudo systemctl start redis

查看redis状态

sudo systemctl status redis
linux更换yum源为阿里云源
进入redis客户端
sudo redis-cli

linux更换yum源为阿里云源
重启redis

sudo systemctl restart redis

停止redis

sudo systemctl stop redis

linux更换yum源为阿里云源

这里可以看到yum源仓库是没有redis得,所以要装三方库epel,只要yum里面没有得就会去epel仓库中下载。

注意:

系统服务管理命令
1.在centos7底下才有systemctl命令
2.在centos6下只有service命令
例如: service network start/restart/stop

说明:

我的命令前加sudo是因为我不是root权限使用得普通用户,但是我配置了sudo得权限给到我得xiyang用户,root权限下不需要加sudo关于sudo权限配置可以查看我的上面得博客
点我查看sudo权限配置