设置greenplum用户和密码访问:
1、创建gp用户
create user tableau with nosuperuser nocreatedb password 'tableau' ;
2、赋表的读的权限
create table test(
id integer
)
GRANT select on table test to tableau;
3、设置配置文件:
vim /extsdd1/gpadmin/data/master/gpseg-1/pg_hba.conf
增加下面两行:
host all gpadmin 0.0.0.0/0 trust
host all tableau 0.0.0.0/0 md5
来源:博客园
作者:xmanman
链接:https://www.cnblogs.com/zhangwensi/p/11413146.html