同一脚本,在控制台执行和通过crontab来触发执行结果不同
脚本内容:
iptables -F
原因:在两种环境下的$PATH输出是不同的,导致crontab执行时提示 iptables command not found
解决:
/sbin/iptables -F >> /tmp/log 2>&1
思考:
排查问题时 需要把warn 和 info日志同时打印下来,方便我们快速定位
同一脚本,在控制台执行和通过crontab来触发执行结果不同
脚本内容:
iptables -F
原因:在两种环境下的$PATH输出是不同的,导致crontab执行时提示 iptables command not found
解决:
/sbin/iptables -F >> /tmp/log 2>&1
思考:
排查问题时 需要把warn 和 info日志同时打印下来,方便我们快速定位