gp常用命令

[gpadmin@mdw ~]$ gpconfig --show max_connections
Values on all segments are consistent
GUC          : max_connections
Master  value: 250
Segment value: 750
[gpadmin@mdw ~]$ psql -c 'SHOW ALL;' -d sg


gpstart    #正常启动
gpstop    #正常关闭
gpstop -M fast       #快速关闭
gpstop –r               #重启
gpstop –u              #重新加载配置文件


#使用utility方式
PGOPTIONS="-c gp_session_role=utility" psql -h -d dbname hostname -p port
PGOPTIONS='-c gp_session_role=utility' psql -h sdw1 -p 40016 sg -c "copy pg_attribute from '/home/gpadmin/pg_attr_fix.txt'";

只有用psql连接时才需要PGOPTIONS='-c gp_session_role=utility'。

启动某个segment instance :pg_ctl start -D /data/m/gp4/

你可能感兴趣的:(greenplum)