PostgreSQL提示:‘psql: FATAL: ”Peer authentication failed for user ”postgres“’错误

PostgreSQL提示:‘psql: FATAL: ”Peer authentication failed for user ”postgres“’错误

#将文件Database administrative 下列中的peer改为trust
$sudo nano /etc/postgresql/10/main/pg_hba.conf
#重新加载配置
$sudo /etc/init.d/portgresql reload
#peer(不可信),trust(可信),md5(加密)

-bash-4.2$ pwd
/var/lib/pgsql/11/data
-bash-4.2$
-bash-4.2$
-bash-4.2$ ls -rlt postgre*
-rw-------. 1 postgres postgres 88 Jun 18 11:27 postgresql.auto.conf
-rw-------. 1 postgres postgres 23863 Jun 18 12:01 postgresql.conf

原文地址:https://www.cnblogs.com/chendian0/p/11044527.html

时间: 2024-10-12 21:52:47

PostgreSQL提示:‘psql: FATAL: ”Peer authentication failed for user ”postgres“’错误的相关文章

pg_dump: [archiver (db)] connection to database “dbase” failed: FATAL: Peer authentication failed for user “postgres”

"Peer authentication" means that it's comparing your database username against your Linux username. It should work if you're logged in as postgres. You probably don't want to hit that md5 rule in pg_hba, as the postgres database user generally d

PostgreSQL新手上路PG::ConnectionBad (FATAL: Peer authentication failed

部署完的新机器报错 App 12595 stderr: PG::ConnectionBad (FATAL: Peer authentication failed for user "dbuser" App 12595 stderr: ): 上网查了一下,很多帖子上都说要修改/etc/postgresql/9.4/main/pg_hba.conf 这个文件配置,然而并没有什么用 回忆一下整个数据库的搭建过程 (1)创建数据库用户dbuser,并指定为超级用户 sudo -u postgr

PG::ConnectionBad (FATAL: Peer authentication failed

部署完的新机器报错 App 12595 stderr: PG::ConnectionBad (FATAL: Peer authentication failed for user "dbuser" App 12595 stderr: ): 上网查了一下,很多帖子上都在说要修改/etc/postgresql/9.4/main/pg_hba.conf这个文件,然而并没有什么用 回忆一下整个数据库搭建过程 (1)创建数据库用户dbuser,并指定其为超级用户 sudo -u postgres

pgadmin3 新建服务器出现错误 Peer authentication failed for user "postgres" 的解决办法

转自:http://blog.csdn.net/tingyuanss/article/details/43763899 用pgadmin3 新建服务器出现错误 Peer authentication failed for user "postgres" 在stackoverflow上找到答案,出现此错误的原因是: Peer authentication 是默认的配置,如果你的计算机用户名和你的postgres数据库名是一样的话,那么就不会出现此错误,不需要为你的数据库设置密码. 还有一

(转载)postgresql navicat 客户端连接验证失败解决方法:password authentication failed for user

命令:su - postgres CREATE USER foo WITH PASSWORD 'secret'; ==================== 1.2个配置修改 postgresql.conf:修改 listen_addresses = '*' pg_hba.conf:增加 # IPv4 local connections:host    all             all             127.0.0.1/32            md5host    all  

TortoiseGit拉取或推送项目提示 HTTP Basic: Access denied fatal: Authentication failed.

TortoiseGit拉取或推送项目提示 HTTP Basic: Access denied fatal: Authentication failed. 大体意思是,HTTP基本认证失败,访问被拒绝. 但采用ssh方式,却是正常的.而且在前段时间http方式也是正常使用的. 记得以前有碰到过这样的问题,在当前Windows登录账户目录下有个.git目录,删掉里面某个文件,就可以了. 但是在C:\Users\your name下没有找到.git目录. 几经百度无果,转战google.在stacko

解决GitHub使用双因子身份认证“Two-Factor Athentication”后无法git push 代码的“fatal: Authentication failed for ...”错误

在GitHub上采取双因子身份认证后,在git push 的时候将会要求填写用户的用户名和密码,用户名就是用户在GitHub上申请的用户名,但是密码不是普通登录GitHub的密码. 一旦采取双因子身份认证,登录GitHub的时候既需要输入用户名和密码,还需要输入一个即时的验证码,这样可以对Git账户提供双重的安全保障.但是git push 却怎么也没法推送到远端repo,总是提示身份认证错误:“fatal: Authentication failed for ...” 查了很多国内的解决方案,只

Github错误:fatal: Authentication failed for 'https://github.com/ ...

GitHub push代码发生错误:fatal: Authentication failed for 'https://github.com/ ... 使用的https提交,在用SourceTree提交代码时候发生错误,返回的错误提示说: fatal: Authentication failed for 'https://github.com/ ... 如图所示: 解决方案,重新执行git config命令配置用户名和邮箱即可: git config -–global user.name "xx

git操作及fatal: Authentication failed for错误解决

1.配置用户信息 git config --global user.name [username] git config --global user.email [email] 2.查询用户信息 git config --list 3.如果push遇到在输入密码是熟错后,就会报这个错误fatal: Authentication failed for 解决办法: git config --system --unset credential.helper 之后你在push就会提示输入名称和密码---