gpt4 book ai didi

php - 请求库 : Failed to establish a new connection: [Errno 13] Permission denied

转载 作者:行者123 更新时间:2023-12-05 02:15:05 24 4
gpt4 key购买 nike

我有一个 python 脚本,它使用请求库通过其网络界面连接到设备。它使用带有 https 连接的 url。

sess = requests.Session()
try:
resp = sess.post('https://' + device + '/url_admin/login.cgi', data=login_data, verify=False)
except Exception as e:
template = "Exception: {0}\nArguments: {1!r}"
print(template.format(type(e).__name__, e.args))

当我尝试从命令行执行它时,它工作得很好(即使是 apache 用户)。但是,当它被来自门户网站的 php 代码(exec 函数)触发时。它抛出这个错误

Exception: ConnectionError
Arguments: (MaxRetryError("HTTPSConnectionPool(host='some.device.com', port=443): Max retries exceeded with url: /url_admin/login.cgi (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x7f55aa8e6550>: Failed to establish a new connection: [Errno 13] Permission denied',))",),)

我不确定是什么原因,因为 apache 用户能够执行它并建立连接。为什么用php代码执行时连接不上?

最佳答案

setsebool -P httpd_can_network_connect on

关于php - 请求库 : Failed to establish a new connection: [Errno 13] Permission denied,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52528590/

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