ansible 连接错误

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这个变量设置了使用哪个版本的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加设置变量。
保存退出就可以了。
以上!

你可能感兴趣的:(ansible 连接错误)