为 PostgreSQL 用户设置空白密码

发布于 2024-10-26 02:44:36 字数 191 浏览 2 评论 0 原文

我使用 postgresql 命令“createuser myusername”。它总是提示我输入密码。如果我将密码留空,则会出现未指定密码的错误。

我只是想创建一个空白/无密码的用户,但我无法在 mac os x 下使用 Postgresql 9 来做到这一点。

我应该采取什么步骤来创建一个没有密码的用户。该命令总是要求我输入密码。

I use postgresql command 'createuser myusername'. It prompts me for password always. If I leave password blank it gives an error that no password is specified.

I simply want to create a user with blank/no password and I'm not able to do it with Postgresql 9 under mac os x.

What steps should I take to create a user with no password. The command always asks me to enter a password.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

绝不服输 2024-11-02 02:44:36

使用 createuser 修复此问题将不起作用。根据createuserman页面,它表示如果您确实需要密码并设置--no-password,则登录将失败。 createuser 只是创建一个用户。它决定用户必须如何进行身份验证。

身份验证主要在 pg_hba.conf 中处理,它决定登录时是否需要密码。我从未在 OS X 上运行过 PostgreSQL。在 Linux 上,我的发行版的库存配置如下所示:

# TYPE  DATABASE        USER            CIDR-ADDRESS            METHOD

# "local" is for Unix domain socket connections only
local   all             all                                     ident
# IPv4 local connections:
host    all             all             127.0.0.1/32            trust
# IPv6 local connections:
host    all             all             ::1/128                 trust

确保您有类似第一行的内容用于开发访问。注意:如果没有设置 --host 选项,psql 将尝试连接 unix 套接字。如果您尝试使用 psql --host localhost 进行连接,则将使用第二行

Fixing this with createuser won't work. Per the man page for createuser, 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:

# TYPE  DATABASE        USER            CIDR-ADDRESS            METHOD

# "local" is for Unix domain socket connections only
local   all             all                                     ident
# IPv4 local connections:
host    all             all             127.0.0.1/32            trust
# IPv6 local connections:
host    all             all             ::1/128                 trust

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 with psql --host localhost

想念有你 2024-11-02 02:44:36

使用 .pgpass

与其创建一个没有密码的用户,另一种方法是创建一个 .pgpass 文件,其中包含密码以自动提供密码。所有使用 libpq 进行连接的应用程序都将遵守这一点,这实际上是除 JDBC 驱动程序和 .NET 驱动程序之外的所有应用程序。

以下是如何为用户“foobar”和密码“password”创建示例 .pgpass 文件,并具有正确的文件权限:

echo 'localhost:*:*:foobar:password' >> ~/.pgpass
chmod 600 ~/.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:

echo 'localhost:*:*:foobar:password' >> ~/.pgpass
chmod 600 ~/.pgpass
世俗缘 2024-11-02 02:44:36

更改 PG 用户密码的其他方法(我更喜欢它)是登录 postgres 控制台(作为本地 PC 上的 postgres 用户),并发出 SQL 请求:

$ sudo -u postgres psql -w

# ALTER USER postgres WITH PASSWORD '';

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:

$ sudo -u postgres psql -w

# ALTER USER postgres WITH PASSWORD '';
笑,眼淚并存 2024-11-02 02:44:36
postgres=# ALTER USER postgres WITH PASSWORD '';
NOTICE:  empty string is not a valid password, clearing password
ALTER ROLE
postgres=# 
postgres=# ALTER USER postgres WITH PASSWORD '';
NOTICE:  empty string is not a valid password, clearing password
ALTER ROLE
postgres=# 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文