为 PostgreSQL 用户设置空白密码
我使用 postgresql 命令“createuser myusername”。它总是提示我输入密码。如果我将密码留空,则会出现未指定密码的错误。
我只是想创建一个空白/无密码的用户,但我无法在 mac os x 下使用 Postgresql 9 来做到这一点。
我应该采取什么步骤来创建一个没有密码的用户。该命令总是要求我输入密码。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
createuser
修复此问题将不起作用。根据createuser
的man
页面,它表示如果您确实需要密码并设置--no-password
,则登录将失败。createuser
只是创建一个用户。它不决定用户必须如何进行身份验证。身份验证主要在 pg_hba.conf 中处理,它决定登录时是否需要密码。我从未在 OS X 上运行过 PostgreSQL。在 Linux 上,我的发行版的库存配置如下所示:
确保您有类似第一行的内容用于开发访问。注意:如果没有设置
--host
选项,psql
将尝试连接 unix 套接字。如果您尝试使用 psql --host localhost 进行连接,则将使用第二行Fixing this with
createuser
won't work. Per theman
page forcreateuser
, it says that login will fail if you really need a password and set--no-password
.createuser
just creates a user. It does not decide how the user will have to authenticate.Authentication is handled mainly in
pg_hba.conf
, which decides whether or not to require passwords at login. I've never run PostgreSQL on OS X. On Linux, my distro's stock conf looks like this:Make sure you have something like the first line for for development access. Note:
psql
will try to connect with a unix socket if there is no--host
option set. The second line would be used if you try to connect withpsql --host localhost
使用
.pgpass
与其创建一个没有密码的用户,另一种方法是创建一个 .pgpass 文件,其中包含密码以自动提供密码。所有使用 libpq 进行连接的应用程序都将遵守这一点,这实际上是除 JDBC 驱动程序和 .NET 驱动程序之外的所有应用程序。
以下是如何为用户“foobar”和密码“password”创建示例
.pgpass
文件,并具有正确的文件权限:Use
.pgpass
Rather than creating a user with no password, an alternative is to create a .pgpass file with the password in to have it automatically supplied. This will be respected by all applications that use libpq to connect, which is practically all of them except the JDBC driver and the .NET driver.
Here is how to create an example
.pgpass
file for the user "foobar" and the password "password", with the right file permissions:更改 PG 用户密码的其他方法(我更喜欢它)是登录 postgres 控制台(作为本地 PC 上的
postgres
用户),并发出 SQL 请求:The additional way (I prefere it) to change user's password for PG user is to login to postgres console (as a
postgres
user on a local pc), and issue SQL request: