centOS下使用yum安装salt-minion

CentOS安装salt-minion

[root@localhost ~]# yum -y install salt-minion
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
Error: Cannot retrieve metalink for repository: epel. Please verify its path and try again

解决办法是编辑/etc/yum.repos.d/epel.repo,把基础的恢复,镜像的地址注释掉

#baseurl
mirrorlist

改成

baseurl
#mirrorlist

如果出现No package salt-minion available,则:

1. 安装源

1.1 安装epel源

# cd /usr/local/src/
# wget http://mirrors.sohu.com/fedora-epel/6/x86_64/epel-release-6-8.noarch.rpm
# rpm -ivh epel-release-6-8.noarch.rpm
 

1.2 安装rpmforge

在redhat 6和centos 6的epel源上没有python-jinja2,一开始安装变卡在这了.

# wget http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
# rpm -Uvh rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
 

2. 安装依赖包

# yum install python-jinja2
原文地址:https://www.cnblogs.com/LH2014/p/4096991.html