当前位置:   article > 正文

zabbix server报错:FATAL: password authentication failed for user "zabbix"_fatal: password authentication failed for user

fatal: password authentication failed for user

zabbix agent日志
[root@localhost zabbix]# cat zabbix_server.log

FATAL:  password authentication failed for user "zabbix" 身份认证失败
  • 1

在这里插入图片描述
解决办法 :
查看zabbix数据库的属主,
在这里插入图片描述
更改属主

zabbix=# alter database "zabbix" owner to zabbix;
  • 1

在这里插入图片描述

在应用程序中创建一个新用户帐户。并用该帐户的所有权创建数据库。

postgres=# create user "zabbix" with password 'zabbix';
postgres=# create database "zabbix" owner "zabbix"; 
  • 1
  • 2

现在编辑pg_hba PostgreSQL的配置文件,并更新配置。 PostgreSQL缺省使用IDENT-based认证。您需要允许用户名和密码认证的基础。 IDENT绝不允许你通过 -U 或 -W 选项登录。

# vim /var/lib/pgsql/9.4/data/pg_hba.conf
local   all             postgres                                trust
local   all             myapp_usr                               trust
# IPv4 local connections:
host    all             all             127.0.0.1/32            trust
# IPv6 local connections:
#host    all             all             ::1/128                 trust
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

参考链接 :
zabbix报错排错大全 : https://www.cnblogs.com/dbslinux/p/9465803.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/518155
推荐阅读
相关标签
  

闽ICP备14008679号