解決 Error: ansible requires the stdlib json 問題

現象:python

網內一臺rhel5.2的姥爺服務器一直沒法ansibleshell

playbook 報錯json

Error: ansible requires the stdlib json or simplejson module, neither was found!服務器

緣由:python2.7

python版本問題.ui

python-2.4.3-21.el5code


解決:server

方法一: 手動安裝了python2.7get

wget  https://www.python.org/ftp/python/2.7.11/Python-2.7.11.tgz
tar -xvf  Python-2.7.11.tgz
cd Python-2.7.11
./configure
make
make test
make install
mv /usr/bin/python /usr/bin/python.bak
ln -sf /usr/bin/python /usr/local/bin/python


這時致使理這臺服務器的yum出現問題. it

由於yum調用的python24. 最小改動原則直接編輯 /usr/bin/yum

vi /usr/bin/yum
將:
#!/usr/bin/python
改成
#!/usr/bin/python2.4


OK了



方法 二: 

簡便辦法:

仍是安裝python2.7

而後修改 ansible server中 這個主機的解釋器配置.

 ansible_python_interpreter=/usr/local/bin/python

相關文章
相關標籤/搜索