Greenplum-cc-web监控软件安装时常见错误

Posted 何石的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Greenplum-cc-web监控软件安装时常见错误相关的知识,希望对你有一定的参考价值。

 错误error: 
1.no pg_hba.conf entry for host “::1”, user “gpmon”, database “gpperfmon”, SSL off 
解决:

vi pg_hba.conf增加:
     host    gpperfmon   gpmon           ::1/128    trust (此处的trust应该为md5,否则后面会报错)

2.error: 在安装workload manaager报错,按提示查看日志,发现一台机器crontab 没安装 
解决:

yum install vixie-cron

3.登陆web提示:trust login is disabled.trust user gpmon is not allowed to login Command Center 
描述: 
psql -d gpperfmon -U gpmon -W 输入密码可以正常登陆 
查看日志:/home/greenplum-4.3-cc/instances/gpcc2/logs/gpmonws.log 
我們從日志“Trust login not allowed. User gpmon has trust login enabled”可以看出, 
gpmon是不容許Trust方式登錄的,因爲GP監控實例配置文件gpperfmonui.conf中默認配置allow_trust_logon=False, 
指不容許Trust方式登錄。 
修改pg_hba.conf将其中的trust修改为md5

  host     all         gpmon         127.0.0.1/28    md5
  host    gpperfmon       gpmon   ::1/128         md5
  host    gpperfmon       gpmon   192.168.151.0/24        md5
  这里gpmon用户是不允许trust链接的,但是针对gpadminIII的使用,对于151段的配置还是可以使用trust,不冲突
  host     all         all             192.168.151.0/24   trust










以上是关于Greenplum-cc-web监控软件安装时常见错误的主要内容,如果未能解决你的问题,请参考以下文章

greenplum-cc-web4.2 监控安装

Greenplum-cc-web安装

升级 greenplum-cc-web 到 4.4.0

GreenPlum 大数据平台--安装

运行 gpccinstall 时安装 greenplum 命令中心失败

Linux编译安装软件常见问题及排查