作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个 Python 脚本,它作为 Windows 服务运行。该脚本派生另一个进程:
with subprocess.Popen( args=[self.exec_path], stdout=subprocess.PIPE, stderr=subprocess.STDOUT) as proc:
导致以下错误:
OSError: [WinError 6] The handle is invalid
File "C:\Program Files (x86)\Python35-32\lib\subprocess.py", line 911, in __init__
File "C:\Program Files (x86)\Python35-32\lib\subprocess.py", line 1117, in _get_handles
最佳答案
subprocess.py
中的第 1117 行是:
p2cread = _winapi.GetStdHandle(_winapi.STD_INPUT_HANDLE)
这让我怀疑服务进程没有与之关联的 STDIN (TBC)
可以通过提供一个文件或空设备作为 popen
的标准输入参数来避免这种麻烦的代码。
在 Python 3.x 中,您可以简单地传递 stdin=subprocess.DEVNULL
。例如
subprocess.Popen( args=[self.exec_path], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, stdin=subprocess.DEVNULL)
在 Python 2.x 中,您需要将文件处理程序设置为 null,然后将其传递给 popen:
devnull = open(os.devnull, 'wb')
subprocess.Popen( args=[self.exec_path], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, stdin=devnull)
关于作为 Windows 服务运行的 Python : OSError: [WinError 6] The handle is invalid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40108816/
我是一名优秀的程序员,十分优秀!