如何调用psql以使它不提示输入密码?

这是我所拥有的:

psql -Umyuser < myscript.sql

但是,我找不到传递密码的参数,所以psql总是提示输入这个参数。


当前回答

如果你像我一样在windows上遇到问题(我使用的是windows 7 64位),设置PGPASSWORD=[Password]不工作。

然后,正如Kavaklioglu在其中一条评论中所说,

export PGPASSWORD=[password]

您需要将其保存在文件的顶部,或者在任何使用之前,以便在调用之前设置它。

当然可以在windows上工作:)

其他回答

如果您打算拥有多个主机/数据库连接,则~/。Pgpass文件是可行的。

步骤:

Create the file using vim ~/.pgpass or similar. Input your information in the following format: hostname:port:database:username:password Do not add string quotes around your field values. You can also use * as a wildcard for your port/database fields. You must chmod 0600 ~/.pgpass in order for it to not be silently ignored by psql. Create an alias in your bash profile that runs your psql command for you. For example:alias postygresy='psql --host hostname database_name -U username' The values should match those that you inputted to the ~/.pgpass file. Source your bash profile with . ~/.bashrc or similar. Type your alias from the command line.

注意,如果设置了export PGPASSWORD= "变量,它将优先于文件。

如果你像我一样在windows上遇到问题(我使用的是windows 7 64位),设置PGPASSWORD=[Password]不工作。

然后,正如Kavaklioglu在其中一条评论中所说,

export PGPASSWORD=[password]

您需要将其保存在文件的顶部,或者在任何使用之前,以便在调用之前设置它。

当然可以在windows上工作:)

在命令中使用-w: psql -h localhost -p 5432 -U user -w

考虑到使用PGPASSWORD环境变量的安全问题,我认为最佳的整体解决方案如下:

用您想使用的密码编写自己的临时pgpass文件。 使用PGPASSFILE环境变量告诉psql使用该文件。 删除临时pgpass文件

这里有几点需要注意。步骤1是为了避免混淆用户的~/。Pgpass文件可能存在。您还必须确保该文件的权限为0600或更小。

一些人建议使用bash来实现如下的快捷方式:

PGPASSFILE=<(echo myserver:5432:mydb:jdoe:password) psql -h myserver -U jdoe -p 5432 mydb

它使用<()语法来避免将数据写入实际文件。但它不起作用,因为psql检查正在使用的文件,并抛出如下错误:

WARNING: password file "/dev/fd/63" is not a plain file

这可能是一个老问题了,但是你可以使用一个没有人提到过的替代方法。可以在连接URI中直接指定密码。文档可以在这里找到,也可以在这里。

你可以在提供给psql的连接URI中直接提供你的用户名和密码:

# postgresql://[user[:password]@][netloc][:port][/dbname][?param1=value1&...]
psql postgresql://username:password@localhost:5432/mydb