gpt4 book ai didi

linux - crontab 在重新启动时不启动命令

转载 作者:太空宇宙 更新时间:2023-11-04 03:54:01 25 4
gpt4 key购买 nike

我需要一个在重新启动时运行的命令。该命令称为 script.sh

#!/bin/bash
ibeacon scan | /home/pi/test.py

此命令将输入​​传送到我编写的名为 test.py 的 Python 程序。

#!/usr/bin/python
import fileinput
import socket
import requests

for line in fileinput.input():
if line.startswith('UUID:'):
line = line.strip()
a = line.split(' ')[1]
b = line.split(' ')[3]
c = line.split(' ')[5]
d = line.split(' ')[7]
e = line.split(' ')[9]
f = socket.gethostname()
payload = {'uuid': a, 'major': b, 'minor': c, 'power': d, 'rssi': e, 'hubname': f}
r = requests.get('http://httpbin.org/get', params=payload)
# print(r.url) ##Print the URL
elif line.startswith('iBeacon'):
print "Starting script..."
continue
else:
print "Error: invalid input, closing..."
break

问题是当我检查进程时程序没有运行。系统日志文件指出它在重新启动时启动了命令,但它没有运行。

Aug 19 22:23:35 raspberrypibeacon /USR/SBIN/CRON[2089]: (root) CMD (/home/pi/script.sh > /dev/null 2>&1)

我的 crontab 条目如下所示

@reboot /home/pi/script.sh > /dev/null 2>&1

是 cron 的问题还是我的程序的问题?我的程序在从命令行运行时工作正常,但在由 cron 执行时工作正常。

最佳答案

通常,如果某些东西从命令行运行良好,但作为 cron 作业运行不正常,这是因为 cron 作业的 PATH 设置不同。 PATH 设置得相当保守,以确保不会运行错误的东西,这会导致安全问题。

您可以首先将 ibeacon 程序的完整路径放入 shell 脚本中(即,将其运行为

/path/to/ibeacon scan | ...

不仅仅是

ibeacon scan | ...

该脚本也以 root 身份运行,因此如果 ibeacon 位于您自己的 bin 目录中,则在没有完整路径的情况下将无法找到它。

关于linux - crontab 在重新启动时不启动命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25394168/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com