1.安装ansible
在有安装python情况下:
pip install ansible
或者指定版本:
pip install ansible==2.7.2
没有安装python情况下:
ubuntu:
apt install ansible
centos:
yum install ansible -y
2.查看ansible版本及配置文件
ansible –version
3.修改ansible配置
cd /opt
nano ansible.cfg
invertory(主机清单文件)
remote_user(远端服务器的用户)
4.添加被控主机清单
nano hosts
添加主机名称
5.在本机hosts配置dns主机
nano /etc/hosts
ping cc
ping shouqian
确认正常
6.安装sshpass
apt install sshpass
7.把被控主机的ssh秘钥拷贝过来
ssh-keyscan shouqian >> ~/.ssh/know_hosts
8.确认ansible正常
ansible all -m ping -k
ansible all -m shell -a “id root” -k
© 版权声明
文章版权归作者所有,未经允许请勿转载。
相关文章
暂无评论...