gpt4 book ai didi

python - URLLib.Request 在使用 cron (CentOS) 执行时返回连接超时

转载 作者:行者123 更新时间:2023-12-04 19:30:29 25 4
gpt4 key购买 nike

我有一个 Python 脚本,我想每天用 cron 执行它。我唯一遇到问题的脚本是它使用 URLLib 请求的脚本,那里出现连接超时错误:

回溯(最近一次通话最后):

  File "/usr/lib64/python3.6/urllib/request.py", line 1318, in do_open
encode_chunked=req.has_header('Transfer-encoding'))
File "/usr/lib64/python3.6/http/client.py", line 1254, in request
self._send_request(method, url, body, headers, encode_chunked)
File "/usr/lib64/python3.6/http/client.py", line 1300, in _send_request
self.endheaders(body, encode_chunked=encode_chunked)
File "/usr/lib64/python3.6/http/client.py", line 1249, in endheaders
self._send_output(message_body, encode_chunked=encode_chunked)
File "/usr/lib64/python3.6/http/client.py", line 1036, in _send_output
self.send(msg)
File "/usr/lib64/python3.6/http/client.py", line 974, in send
self.connect()
File "/usr/lib64/python3.6/http/client.py", line 1407, in connect
super().connect()
File "/usr/lib64/python3.6/http/client.py", line 946, in connect
(self.host,self.port), self.timeout, self.source_address)
File "/usr/lib64/python3.6/socket.py", line 724, in create_connection
raise err
File "/usr/lib64/python3.6/socket.py", line 713, in create_connection
sock.connect(sa)
TimeoutError: [Errno 110] Connection timed out

这是 cron 执行:
0 3 * * * /usr/bin/python3.6 "/home/ngabioud/Scripts Python VM/ClickTableau.py"

你知道为什么这不起作用吗?如果我在命令行上手动运行该脚本,它可以正常工作。

谢谢!

最佳答案

这似乎是来自代理的问题。

使用 here 的答案举个例子,

事实证明,我必须设置代理设置,以便我以自己而不是 root 身份访问 AWS。我将 cron 作业作为 Linux shell 脚本而不是 Python 脚本运行,并在 shell 脚本第一行的 ~/.bash_profile 中导出了我的 http_proxy、https_proxy 和 no_proxy 设置

`export http_proxy=<http_proxy from ~/.bash_profile>
export https_proxy=<https_proxy from ~/.bash_profile>
export no_proxy=<no_proxy from ~./bash_profile>
python <python script>`

如果您仍然无法对其进行排序,请说明您托管 cron 作业的位置以及以下步骤的输出。

考虑记录 cron-job 标准输出和标准错误。这比 python 的错误跟踪更有帮助。
18 20 * * * python2.6 script.py > /test.log 2>/test.err &

还要检查/var/log/messages 以获取任何信息。

最后,为什么不试试 celery 而不是 cron?见 here

关于python - URLLib.Request 在使用 cron (CentOS) 执行时返回连接超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60793373/

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