0%

crontab执行失败返回127的原因和解决方法

问题描述

crontab执行自己编写的Shell脚本报错,iptables命令返回127(command not found) ,在后台手动执行脚本是正常的。

解决方法

添加PATH,在脚本里添加如下:

1
export PATH=/usr/sbin/:$PATH

参考资料

https://blog.csdn.net/qq_36588424/article/details/127549734