前端之家收集整理的这篇文章主要介绍了
ansible基于密码sudo执行命令,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
ansible基于密码sudo执行命令
需求分析
- 主机目前在同一个局域网可访问
-
权限方面:
- 所有的主机都禁止使用root直接登录
- 所有的主机都禁止配置密钥登录
- 所有的主机有sudo到root的权限
- ssh登录端口是65535
实战方案
yum -y install ansible
- 关闭@H_502_32@host_key_checking
vim /etc/ansible/ansible.cfg
host_key_checking = False
vim /etc/ansible/hosts
[centos6]
192.168.22.1:22 ansible_ssh_user=wanghui ansible_ssh_pass='123456' ansible_sudo_pass='123456'
[centos7]
centos7-node1.abc.com:22 ansible_ssh_user=wanghui ansible_ssh_pass='123456' ansible_sudo_pass='123456'
ansible all -m shell -a "mkdir /root/test -p" -u wanghui --sudo
原文链接:https://www.f2er.com/centos/374341.html