1、使用yum包管理器安装 #创建安装包下载目录 mkdir -p /data/soft/ansible #下载ansible及其所有依赖 yum -y install epel-release #CentOS系统需要安装第三方yum源 yum install -y ansible --downloadonly --downloaddir=/data/soft/ansible #离线安装 cd /data/soft/ansible yum localinstall *.rpm -y #查看版本 ansible --version 2、使用pip安装 cd /data/soft/ansible pip3 download --index-url https://mirrors.aliyun.com/pypi/simple/ ansible==2.9.27 #离线安装 pip3 install ansible==2.9.27 --no-index --find-links=file:///data/soft/ansible #查看版本 ansible --version » 本文链接:https://www.osyunwei.com/archives/14381.html» 订阅本站:https://www.osyunwei.com/feed» 转载请注明来源:系统运维 » Linux下安装Ansible自动化运维工具
查看全文