定时任务任务脚本报命令找不到错误原因分析
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了定时任务任务脚本报命令找不到错误原因分析相关的知识,希望对你有一定的参考价值。
1.1 定时任务内环境变量和shell环境变量的区别
1.1.1 shell环境变量PATH查询用echo $PATH命令
[[email protected] /]# echo $PATH /usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin shell环境变量
1.1.2 定时任务内环境变量PATH查询是把echo $PATH的命令写入脚本,再把执行结果写入文本查询结果。
[[email protected] scripts]# tailf path.log /usr/bin:/bin 定时任务内部环境变量
可以看出定时任务内部环境变量PATH是不全的,只有/usr/bin:/bin。
1.1.3 举个ifconfig命令的例子,查询命令路径的命令是which。
[[email protected] /]# which ifconfig /sbin/ifconfig
看到结果就知道,定时任务内环境变量PATH里并没有这个命令的路径。
所以在脚本加入ifconfig命令后会报错。
[[email protected] scripts]# tailf/server/scripts/log/ip.log /server/scripts/ip.sh: line 1: ifconfig:command not found 命令没有找到
1.2 如何解决这类问题?
1.2.1 用which查询路径,给不在/usr/bin:/bin路径里命令加上查询后的路径。
[[email protected] scripts]# vim ip.sh /sbin/ifconfig date 脚本内容
date是在/bin路径下,所以不用再加路径。直接写命令即可。
[[email protected] scripts]# which date /bin/date
1.2.2 如果脚本命令多的话,需要重新修改定时任务内环境变量PATH。
[[email protected] scripts]# vim ip.sh exportPATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin ifconfig date 脚本内容
以上是关于定时任务任务脚本报命令找不到错误原因分析的主要内容,如果未能解决你的问题,请参考以下文章
linux定时任务shell脚本开头如下 cd ~ . .bash_profile 定时任务执行后提示找不到.bash_profile啥情况