一、备份原配置文件:shell
cp /etc/ansible/hosts /etc/ansible/hosts.bak
二、修改hosts配置文件:安全
cat <<EOF>>/etc/ansible/hosts [test] 10.10.10.1 10.10.10.2 10.10.10.3 [test1] 10.10.10.11 10.10.10.12 [test:vars] ansible_ssh_user=test ansible_ssh_pass=111111 ansible_su_pass=111111 ansible_sudo_user=test ansible_sudo_pass=111111 [all:vars] ansible_ssh_user=test ansible_ssh_pass=123456 ansible_su_pass=123456 ansible_sudo_user=test ansible_sudo_pass=123456 EOF
注:服务器
一、能够不设置免密码登陆,配置好ansible_ssh_user和ansible_ssh_pass便可ssh
二、若想用登陆用户test启用sudo权限,登陆目标服务器:测试
执行visudo命令,最后一行加入 'test ALL=(ALL) ALL'便可。spa
或code
echo 'test ALL=(ALL) ALL' >>/etc/sudoersblog
( 不建议echo 'test ALL=(ALL) NOPASSWD: ALL' >>/etc/sudoers ; sudo免密码,普通用户权限过大,有安全隐患)rem
[root@localhost vmuser]# ansible test -m ping 10.10.10.1 | SUCCESS => { "changed": false, "ping": "pong" } 10.10.10.2 | SUCCESS => { "changed": false, "ping": "pong" } 10.10.10.3 | SUCCESS => { "changed": false, "ping": "pong" }
[root@localhost vmuser]# ansible test1 -m shell -a "fdisk -l |head -n2" -s 10.10.10.11 | SUCCESS | rc=0 >> Disk /dev/sda: 2000.4 GB, 2000398934016 bytes 10.10.10.12 | SUCCESS | rc=0 >> Disk /dev/sda: 2000.4 GB, 2000398934016 bytes
[root@localhost vmuser]# ansible all -S -R root -m shell -a "/sbin/fdisk -l |head -n2" [DEPRECATION WARNING]: The su command line option has been deprecated in favor of the "become" command line arguments. This feature will be removed in version 2.6. Deprecation warnings can be disabled by setting deprecation_warnings=False in ansible.cfg. 10.10.10.1 | SUCCESS | rc=0 >> Disk /dev/sda: 2000.4 GB, 2000398934016 bytes 10.10.10.2 | SUCCESS | rc=0 >> Disk /dev/sda: 2000.4 GB, 2000398934016 bytes 10.10.10.3 | SUCCESS | rc=0 >> Disk /dev/sda: 2000.4 GB, 2000398934016 bytes 10.10.10.11 | SUCCESS | rc=0 >> Disk /dev/sda: 2000.4 GB, 2000398934016 bytes 10.10.10.12 | SUCCESS | rc=0 >> Disk /dev/sda: 2000.4 GB, 2000398934016 bytes