FAILED! => {
"changed": false,
"module_stderr": "Shared connection to 52.82.37.16 closed.\r\n",
"module_stdout": "/bin/sh: 1: /usr/bin/python: not found\r\n",
"msg": "MODULE FAILURE",
"rc": 127
}
問題是remote機器的默認python版本為python3。
這里有兩個可用的辦法:
1. -e添加變量
ansible_python_interpreter
這個變量設(shè)置了使用哪個版本的python侨舆。
ansible all -m ping -e ansible_python_interpreter=/usr/bin/python3 -u xxx
但是缺點也很明顯墅拭,每次都要加上這個特別麻煩,來看第二個方法,一步到位俏扩。
2. 把變量添加到hosts
找到/etc/ansible
sudo vi hosts
加上52.82.37.88 ansible_python_interpreter=/usr/bin/python3
遠程主機ip加設(shè)置變量。
保存退出就可以了丈积。
以上!