Python子进程错误:使用stdin将输入传递到终端

问题描述 投票:1回答:1

我正在尝试为PostgreSQL DB创建一个自动的pg dump备份脚本。该脚本要求输入数据库密码。我正在尝试使用stdin输入密码。但是,它不起作用。 'popen.stdin.write(“ rootVidhyaDhan123#!\ n”)',此行未将密码插入脚本终端。

import gzip
import subprocess

with gzip.open('backup.gz', 'wb') as f:
    popen = subprocess.Popen(['pg_dump', '--no-owner', '--no-acl', '-U', 'postgres', '-d', 'database_name', '-h', '178.111.11.111'], stdout=subprocess.PIPE, stdin=subprocess.PIPE, universal_newlines=True)
    time.sleep(5)
    popen.stdin.write("rootVidhyaDhan123#!\n") # code not working
    for stdout_line in iter(popen.stdout.readline, ""):
        f.write(stdout_line.encode('utf-8'))
    popen.stdin.close()
    popen.stdout.close()
    popen.wait()
python python-3.x postgresql subprocess stdin
1个回答
0
投票

可能是pg_dump试图从/ dev / tty而不是从stdin中读取密码。

而不是使用stdin,而是设置PGPASSWORD环境变量或创建.pgpass文件。详细信息在这里:How to pass in password to pg_dump?

© www.soinside.com 2019 - 2024. All rights reserved.