我的Ubuntu Server中有一个在后台运行的定期脚本。如果我在RStudio中执行它,一切都按预期工作。但是当我使用Rscript通过终端执行时,它在调用python脚本时会卡住(它并不总是......但很多时候会被卡在那里)。 (我知道它会卡在那里,因为当我停止Rscript时,它总是告诉我它正在运行我的python脚本)。我对该python脚本chmod 777
已编辑但没有任何线索。
直到几天前才正常工作,不知道为什么。
Rscript一句:
Rscript /home/XXX/XXX/scriptServicioBBDDHS.R
它在R代码中停止的位置:
outputMACs <- system(ignore.stdout = F, ignore.stderr = T,
"python3 /home/XXX/XXX/MACsPrincipal.py 'Y.Y.Y.Y' 'user' 'password'", intern = T)
python脚本是MikroTik路由器的API。当尝试从路由器读取响应时它会卡住。在这句话中:
r = select.select([s, sys.stdin], [], [], None)
我把代码放在python脚本的main()
中:
def main():
s = None
for res in socket.getaddrinfo(sys.argv[1], "8728", socket.AF_UNSPEC, socket.SOCK_STREAM):
af, socktype, proto, canonname, sa = res
try:
s = socket.socket(af, socktype, proto)
except (socket.error, msg):
s = None
continue
try:
s.connect(sa)
except (socket.error, msg):
s.close()
s = None
continue
break
if s is None:
print ('could not open socket')
sys.exit(1)
apiros = ApiRos(s);
apiros.login(sys.argv[2], sys.argv[3]);
inputsentence = ['/ip/hotspot/active/print', '=detail=']
apiros.writeSentence(inputsentence)
t_end = time.time() + 2
while time.time() < t_end:
r = select.select([s, sys.stdin], [], [], None)
if s in r[0]:
# something to read in socket, read sentence
x = apiros.readSentence()
感谢您的帮助。当我第一次使用crontab在开始使用它时,这个脚本总是工作。现在它失败了。
塞尔吉奥。
答案 0 :(得分:0)
我在MikroTik API中发现了一个可能的错误。问题在于句子
r = select.select([s, sys.stdin], [], [], None)
我不得不重写它以省略sys.stdin
r = select.select(s, [], [], 0.0)
为了实现这一目标,我必须通过R进行系统调用,并使用以下参数:
system(ignore.stdout = F, ignore.stderr = T, "python3 /home/XXX/XXX/MACsPrincipal.py 'Y.Y.Y.Y' 'user' 'password'", intern = T)
如果您不忽略stderr
输出,则无效。