标题: [问题求助] [已解决]一个SH脚本手动可执行,但是放到计划任务中执行却没有效果? [打印本页]
作者: deanhong 时间: 2017-4-14 09:29 标题: [已解决]一个SH脚本手动可执行,但是放到计划任务中执行却没有效果?
本帖最后由 deanhong 于 2017-4-17 09:15 编辑
这个是脚本,权限给了777
cat /hxapp/syncd.sh
#!/bin/sh
/hxapp/hqserver/bin/syncd -d
手动可执行
sh /hxapp/syncd.sh
pstree |grep syncd
|-syncd---35*[{syncd}]
计划任务用过这两种格式 结果发现程序都没起来
05 9 * * * /bin/bash /hxapp/syncd.sh
05 9 * * * /hxapp/syncd.sh
查看CRON日志
cat /var/log/cron
Apr 14 09:05:01 122-n crond[20187]: (root) CMD (/bin/bash /hxapp/syncd.sh)
Apr 13 09:05:01 122-n crond[20347]: (root) CMD (/hxapp/syncd.sh)
应该都是执行了。。但程序都没起来,不知道问题在哪儿,麻烦大家帮忙看看?
作者: Batcher 时间: 2017-4-14 10:02
05 9 * * * /hxapp/syncd.sh > /var/tmp/test.log 2>&1
看看 /var/tmp/test.log 有什么信息
作者: deanhong 时间: 2017-4-14 10:46
cat /var/tmp/test.log
/bin/sh: /hxapp/syncd.sh: /bin/sh^M: bad interpreter: No such file or directory
有这个报错。。
作者: deanhong 时间: 2017-4-14 10:47
但是/bin/ 下是有 sh 这个文件的
作者: deanhong 时间: 2017-4-14 10:51
syncd.sh 里格式改为 :set ff=unix 后
就这个报错了。。
/hxapp/hqserver/bin/syncd: error while loading shared libraries: libevent-1.4.so.2: cannot open shared object file: No such file or directory
作者: Batcher 时间: 2017-4-14 10:54
回复 3# deanhong
/hxapp/syncd.sh 可能是在Windows里面编辑之后传到Linux里面的
需要转换一下格式复制代码
作者: deanhong 时间: 2017-4-14 11:08
恩 转换为UNIX了
而且我也查了下LD_DEBUG=libs /hxapp/hqserver/bin/syncd -v
结果是 trying file=/usr/local/lib/libevent-1.4.so.2
而且路径下也是有libevent-1.4.so.2的
作者: Batcher 时间: 2017-4-14 13:00
回复 5# deanhong
这个报错大部分是因为环境变量的问题,可以在脚本里面 source 一下用户环境变量。
比如你的程序可以在 root 用户下启动,那就这样试试:- #!/bin/sh
- . /root/.bash_profile
- /hxapp/hqserver/bin/syncd -d
复制代码
作者: deanhong 时间: 2017-4-14 13:36
始终都是ROOT下操作的
#!/bin/sh
. /root/.bash_profile
/hxapp/hqserver/bin/syncd -d
试了这个
/hxapp/hqserver/bin/syncd: error while loading shared libraries: libevent-1.4.so.2: cannot open shared object file: No such file or directory
依然是这个报错。。不理解的是 为何手动执行就OK。。
作者: Batcher 时间: 2017-4-14 21:42
回复 9# deanhong
原因是 crontab 的环境变量跟普通用户的环境变量不一样- #!/bin/sh
- . /root/.bash_profile
- . /etc/profile
- /hxapp/hqserver/bin/syncd -d
复制代码
作者: deanhong 时间: 2017-4-17 09:14 标题: RE: 一个SH脚本手动可执行,但是放到计划任务中执行却没有效果?
回复 10# Batcher
原来如此,按照你的方法 目前看已正常运行,多谢!又学习了一招~
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |