1用yum安装mariadb-server,然后用yum history命令将mariadb-server及其依赖包完全卸载掉。
rpm -q mariadb-server
yum install -y mariadb-server
#查yum的历史事件
yum history
#回滚ID为4的历史事件
yum history undo 4
#重做ID为4的历史事件
yum history redo 4
2.配置阿里的centos7的yum源和epel源。
首先,访问阿里的yum源网站mirrors.aliyun.com/
然后:执行如下命令
yum install -y createrepo
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
3.用yum下载ansible的rpm安装包,并将其制作成能用yum管理的软件。配置ansible.repo这个yum源。
#用yum下载ansible的rpm安装包
yum search ansible
yum install -y ansible --downloadonly --downloaddir=/ansible-7
ls /ansible-7
createrepo /ansible-7
ls /ansible-7 发现此目录中有个repodata目录,这个目录存放的就是yum的仓库数据文件
tar -czvf ansible-7.tar.gz /ansible-7 将/ansible-7目录打包压缩
#配置ansible.repo这个yum源。
vim /etc/yum.repos.d/ansible.repo
[ansible7]
name=ansible 7
baseurl=file:///ansible-7
enabled=1
gpgcheck=0
#删除网络yum源配置文件,测试本yum源,用本地的ansible的yum源来安装ansible软件。
rm -fv /etc/yum.repos.d/epel.repo /etc/yum.repos.d/CentOS-Base.repo
yum clean all
yum repolist
yum search ansible
yum install -y ansible
转载于:https://blog.51cto.com/14311361/2386828