ansible安装

网友投稿 581 2022-05-30

ansible安装

ansible安装

前言

本文介绍如何在centos 7上安装 ansible

安装

安装准备

# 文档中脚本默认均以root用户执行 # 安装 epel 源 yum install epel-release -y # 安装依赖工具 yum install git python python-pip -y

ansible安装,更改国内镜像

# 安装ansible (国内如果安装太慢可以直接用pip阿里云加速) #pip install pip --upgrade #pip install ansible pip install pip --upgrade -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com pip install --no-cache-dir ansible -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com # 配置ansible ssh密钥登陆 ssh-keygen -t rsa -b 2048 回车 回车 回车 ssh-copy-id root@$IP

#$IP为需要控制机器的ip地址,按照提示输入yes 和root密码 更多ssh key设置见github文章

验证

设置需控制的机器

sudo vim /etc/ansible/hosts

192.168.1.196 ansible_ssh_user=root

测试是否联通

fangleMac:~ fangle$ ansible all -m ping  SSH password:  192.168.1.196 | SUCCESS => {     "changed": false,      "ping": "pong" }

ssh

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:可服务性测试
下一篇:《R数据科学实战:工具详解与案例分析 》 —2.4.3 year/month/week/day/hour/minute/seco
相关文章