码迷,mamicode.com
首页 > 系统相关 > 详细

ansible执行shell模块和command模块报错| FAILED | rc=127 >> /bin/sh: lsof: command not found和| rc=2 >> [Errno 2] No such file or directory

时间:2017-08-16 20:33:23      阅读:506      评论:0      收藏:0      [点我收藏+]

标签:usr   host   --   not   size   led   改变   方法   star   

命令:

ansible -i hosts_20 st  -m shell -a ‘service zabbix_agentd star‘  -K --become

ansible -i hosts_20 st  -m shell -a ‘lsof -i:10050‘  -K --become

 

在shell模块报错:| FAILED | rc=127 >>
/bin/sh: lsof: command not found

技术分享

 

在command模块报错:| rc=2 >>
[Errno 2] No such file or directory

技术分享

 

 google了一下发现ansible使用shell或者command模块加载环境变量变了,

ansible加载的环境变量:

技术分享

本机上面(192.168.20.33):

技术分享

 

 

在ansible执行和在本机执行echo $pATH命令结果不一样..........................

ansible的command模块或者shell模块因为没有完全加载环境变量。

 

一个临时的解决方法就是在ansible使用shell或者command的模块的时候,强行改变当前系统环境变量:PAHT="/usr/local/sbin:/usr/sbin:/sbin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/bin:/usr/bin";source /etc/profile;

从ansible -i hosts_20 st  -m shell -a ‘lsof -i:10050‘  -K --become

变成了ansible -i hosts_20 st  -m shell -a ‘PAHT="/usr/local/sbin:/usr/sbin:/sbin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/bin:/usr/bin";source /etc/profile;lsof -i:10050‘  -K --become

ansible执行shell模块和command模块报错| FAILED | rc=127 >> /bin/sh: lsof: command not found和| rc=2 >> [Errno 2] No such file or directory

标签:usr   host   --   not   size   led   改变   方法   star   

原文地址:http://www.cnblogs.com/losbyday/p/7375238.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!