snmp 服务无法在 Linux 中正确运行我的程序
我开发了这个脚本程序:(程序名称是x1)
#!/bin/bash
/usr/bin/top -n 1 >/tmp/top1.log
echo ok
接下来是我在终端上运行它并得到正确回复的命令:
./x1
这意味着当外部命令top -n 1>tmp/top1.log
写入文件 top1.log 中,然后在输出中打印消息 ok!
但是,如果我配置 snmpd.cof 并且该程序由 snmp 服务运行:
snmpwalk -v2c -c public 127.0.0.0 OID
top -n 1>/tmp/top1.log
的外部命令将不会放置在 top1.log 中,并且不会生成文件top1.log,仅在输出中打印消息ok。
事实上,top -n 1>/tmp/top1.log
命令无法由 SNMP 服务运行。
I have developed this script program : (program name is x1)
#!/bin/bash
/usr/bin/top -n 1 >/tmp/top1.log
echo ok
Next is the command that I run it on terminal and get correct reply:
./x1
meaning that when external command of top -n 1>tmp/top1.log
is written in the file top1.log and then the message ok printed in output!
But, if I config the snmpd.cof and the program is run by snmp service:
snmpwalk -v2c -c public 127.0.0.0 OID
The external command of top -n 1>/tmp/top1.log
will not be placed in top1.log and the file top1.log will not be generated, only the message ok is printed in the output.
In fact, top -n 1>/tmp/top1.log
command cannot run by SNMP service.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的 snmpd.conf :
我使用( sh 和 exec )来运行!
my snmpd.conf :
i used ( sh and exec ) to run !