一..bash_profile环境变量不生效解决办法()
每次重新打开新的终端,就不能连接postgres数据库,不能联通segment节点,
比较笨的办法是每次打开新的终端就执行下
# source .bash_profile (让环境变量生效)
如果在startX下打开一个console要读取配置,就要写在.bashrc里面,自动让.bash_profile环境变量生效.
把.bash_profile中的
source /opt/greenplum/greenplum-db/greenplum_path.sh
export MASTER_DATA_DIRECTORY=/home/gpadmin/gpdata/gpmaster/gpseg-1
export PGPORT=5432
export PGDATABASE=testDB
编辑到 #vi .bashrc
保存,关闭再打开终端就OK了,