Anaiable執行出現[WARNING]: Platform linux on hostis using the discovered Python interpreter at /usr/bin/python

minseo發表於2024-08-17

參考:
https://www.cnblogs.com/itqingtian/p/17136849.html

  1. 每次執行命令的時候加個引數,跳過這個就不報錯了。
-e "ansible_python_interpreter=auto_legacy_silent"
ansible -ihosts_list app  -e "ansible_python_interpreter=auto_legacy_silent" -m ping
  1. 永久解決方案
    解決辦法:
# vim /etc/ansible/ansible.cfg

ansible.cfg的全域性配置[defaults]部分新增如下配置

interpreter_python = auto_legacy_silent

相關文章