溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

greenplum 集群安裝配置(生產(chǎn)環(huán)境)

發(fā)布時(shí)間:2020-05-28 11:20:19 來源:網(wǎng)絡(luò) 閱讀:7708 作者:無鋒劍 欄目:大數(shù)據(jù)
集群系統(tǒng)初始化信息:

https://blog.51cto.com/michaelkang/2167195

本文對(duì)敏感信息進(jìn)行了替換?。。?!

下載軟件包:

cd /workspace/gpdb/

wget dl.#kjh#.com/greenplum-db-5.10.2-rhel7-x86_64.rpm

RPM方式,

默認(rèn)安裝到 /usr/local/greenplum-db/ (以root在master執(zhí)行)
rpm -Uvh greenplum-db-5.10.2-rhel7-x86_64.rpm

建立節(jié)點(diǎn)信任關(guān)系
打通master到各節(jié)點(diǎn)的免密碼登錄 (以root在master執(zhí)行)
source /usr/local/greenplum-db/greenplum_path.sh

gpssh-exkeys -f /workspace/gpdb/gp-all.txt
安裝各個(gè)節(jié)點(diǎn),并建立gpadmin用戶(以root在master執(zhí)行)
gpseginstall -f /workspace/gpdb/gp-all.txt -u gpadmin -p gpadmin
安裝后檢查
source /usr/local/greenplum-db/greenplum_path.sh

gpcheck -f /workspace/gpdb/gp-all.txt -m gpnode615.kjh.com  gpnode616.kjh.com \
-s gpnode611.kjh.com gpnode612.kjh.com  gpnode613.kjh.com gpnode614.kjh.com
創(chuàng)建服務(wù)安裝文件夾 (root用戶master節(jié)點(diǎn)執(zhí)行)

#gpssh工具可以同時(shí)在多個(gè)機(jī)器上執(zhí)行相同命令,和ansible功能類似

/usr/local/gpdata :master 數(shù)據(jù)數(shù)據(jù)目錄
/data/gpdata :sg 數(shù)據(jù)數(shù)據(jù)目錄
/data01/gpdata :sg 數(shù)據(jù)數(shù)據(jù)目錄

gpssh -f /workspace/gpdb/gp-all.txt
=>

groupadd -g 1888 gpadmin
useradd -g 1888 -u 1888 -m -d /home/gpadmin -s /bin/bash gpadmin
chown -R gpadmin.gpadmin /home/gpadmin
echo "gpadmin" | passwd --stdin gpadmin

mkdir -p /usr/local/gpdata/gpmaster
mkdir -p /data/gpdata/primary
mkdir -p /data01/gpdata/primary

mkdir /data/gpdata/mirror
mkdir /data01/gpdata/mirror

chown -R gpadmin:gpadmin /usr/local/gpdata
chown -R gpadmin:gpadmin /data/gpdata
chown -R gpadmin:gpadmin /data01/gpdata
驗(yàn)證
=> df -h|grep data
[gpnode611.kjh.com] /dev/sdb        894G   33M  894G    1% /data01
[gpnode611.kjh.com] /dev/sda        894G   33M  894G    1% /data
[gpnode612.kjh.com] /dev/sda        932G   33M  932G    1% /data01
[gpnode612.kjh.com] /dev/sdb        894G   33M  894G    1% /data
[gpnode614.kjh.com] /dev/sda        932G   33M  932G    1% /data01
[gpnode614.kjh.com] /dev/sdb        932G   33M  932G    1% /data
[gpnode613.kjh.com] /dev/sdb        932G   33M  932G    1% /data
[gpnode613.kjh.com] /dev/sda        932G   33M  932G    1% /data01
設(shè)置gpadmin賬戶的環(huán)境(gpadmin賬戶操作,master節(jié)點(diǎn)配置)
修改.bashrc
su - gpadmin 
cat >>/home/gpadmin/.bashrc<<-EOF
source /usr/local/greenplum-db/greenplum_path.sh 
export MASTER_DATA_DIRECTORY=/usr/local/gpdata/gpmaster/gpseg-1 
export PGPORT=5432
EOF
修改.bash_profile
su - gpadmin 
cat >>/home/gpadmin/.bash_profile<<-EOF
source /usr/local/greenplum-db/greenplum_path.sh
export MASTER_DATA_DIRECTORY=/usr/local/gpdata/gpmaster/gpseg-1
export PGPORT=5432
EOF
使之生效
source ~/.bashrc
source ~/.bash_profile
segment 節(jié)點(diǎn) (/etc/hosts文件中的hostname或alias一致)
cat >/usr/local/greenplum-db/all_segment<<-EOF
gpnode611.kjh.com 
gpnode612.kjh.com 
gpnode613.kjh.com 
gpnode614.kjh.com
EOF
驗(yàn)證
more  /usr/local/greenplum-db/all_segment     
gpnode611.kjh.com 
gpnode612.kjh.com 
gpnode613.kjh.com 
gpnode614.kjh.com
初始化數(shù)據(jù)集群,(gpadmin賬戶操作,master節(jié)點(diǎn)配置)
增加gpinitsystem_config文件為模板

cp $GPHOME/docs/cli_help/gpconfigs/gpinitsystem_config /usr/local/greenplum-db/gpinit_config

配置gpinit_config
vi /usr/local/greenplum-db/gpinit_config

ARRAY_NAME="PT Greenplum Data Platform"
SEG_PREFIX=gpseg
PORT_BASE=40000
declare -a DATA_DIRECTORY=(/data/gpdata/primary /data/gpdata/primary /data01/gpdata/primary /data01/gpdata/primary )
MASTER_HOSTNAME=gpnode615.kjh.com
MASTER_DIRECTORY=/usr/local/gpdata/gpmaster
MASTER_PORT=5432
MIRROR_PORT_BASE=50000
REPLICATION_PORT_BASE=41000
MIRROR_REPLICATION_PORT_BASE=51000
TRUSTED_SHELL=ssh
CHECK_POINT_SEGMENTS=8
ENCODING=UNICODE
DATABASE_NAME=testgpdb
MACHINE_LIST_FILE=/usr/local/greenplum-db/all_segment
declare -a MIRROR_DATA_DIRECTORY=(/data/gpdata/mirror /data/gpdata/mirror /data01/gpdata/mirror /data01/gpdata/mirror)
執(zhí)行初始化,(master節(jié)點(diǎn) gpadmin 用戶執(zhí)行)

gpinitsystem -c gpinit_config -h hostfile_segments

gpinitsystem命令參數(shù)解釋:
-c:指定初始化文件。
-h:指定segment主機(jī)文件。
-s:指定standby主機(jī),創(chuàng)建standby節(jié)點(diǎn)。

su - gpadmin

gpinitsystem -c /usr/local/greenplum-db/gpinit_config -h /usr/local/greenplum-db/all_segment -s gpnode616.kjh.com
初始化過程:
輸出集群初始化配置:
=>[INFO]:-Greenplum Database Creation Parameters
=>[INFO]:---------------------------------------
=>[INFO]:-Master Configuration
=>[INFO]:---------------------------------------
=>[INFO]:-Master instance name       = PT Greenplum Data Platform
=>[INFO]:-Master hostname            = gpnode615.kjh.com
=>[INFO]:-Master port                = 5432
=>[INFO]:-Master instance dir        = /usr/local/gpdata/gpmaster/gpseg-1
=>[INFO]:-Master LOCALE              = en_US.utf8
................
=>[INFO]:-Master IP address [4]      = 172.20.6.15
=>[INFO]:-Master IP address [5]      = 172.20.6.221
................
=>[INFO]:-Standby Master             = gpnode616.kjh.com
=>[INFO]:-Primary segment #          = 4
=>[INFO]:-Standby IP address         = ::1
=>[INFO]:-Standby IP address         = 172.20.6.16
=>[INFO]:-Standby IP address         = 172.20.6.220
....................
=>[INFO]:----------------------------------------
=>[INFO]:-Greenplum Primary Segment Configuration
=>[INFO]:----------------------------------------
=>[INFO]:-gpnode611.kjh.com    /data/gpdata/primary/gpseg0   40000   2       0       41000
=>[INFO]:-gpnode611.kjh.com    /data/gpdata/primary/gpseg1   40001   3       1       41001
=>[INFO]:-gpnode611.kjh.com    /data01/gpdata/primary/gpseg2         40002   4       2       41002
.........................
=>[INFO]:-gpnode614.kjh.com    /data01/gpdata/primary/gpseg14        40002   16      14      41002
=>[INFO]:-gpnode614.kjh.com    /data01/gpdata/primary/gpseg15        40003   17      15      41003
=>[INFO]:---------------------------------------
=>[INFO]:-Greenplum Mirror Segment Configuration
=>[INFO]:---------------------------------------
=>[INFO]:-gpnode612.kjh.com    /data/gpdata/mirror/gpseg0    50000   18      0       51000
=>[INFO]:-gpnode612.kjh.com    /data/gpdata/mirror/gpseg1    50001   19      1       51001
.........................
=>[INFO]:-gpnode611.kjh.com    /data01/gpdata/mirror/gpseg14         50002   32      14      51002
=>[INFO]:-gpnode611.kjh.com    /data01/gpdata/mirror/gpseg15         50003   33      15      51003
查看配置正確,確認(rèn)是否執(zhí)行?

Continue with Greenplum creation Yy|Nn (default=N):

Y

輸出初始化完成概要信息:
=>
=>[INFO]:------------------------------------------------
=>[INFO]:-Parallel process exit status
=>[INFO]:------------------------------------------------
=>[INFO]:-Total processes marked as completed           = 16
=>[INFO]:-Total processes marked as killed              = 0
=>[INFO]:-Total processes marked as failed              = 0
=>[INFO]:------------------------------------------------
=>[INFO]:-Commencing parallel build of mirror segment instances
............................
=>
=>[INFO]:------------------------------------------------
=>[INFO]:-Parallel process exit status
=>[INFO]:------------------------------------------------
=>[INFO]:-Total processes marked as completed           = 16
=>[INFO]:-Total processes marked as killed              = 0
=>[INFO]:-Total processes marked as failed              = 0
=>[INFO]:------------------------------------------------

.....................略
=>
=>]:-Process results...
=>]:-   Successful segment starts                                            = 32
=>]:-   Failed segment starts                                                = 0
=>]:-   Skipped segment starts (segments are marked down in configuration)   = 0
=>]:-----------------------------------------------------
=>]:-Successfully started 32 of 32 segment instances 
=>]:-----------------------------------------------------
.
=>]:------------------------------------------------------
=>]:-Greenplum standby master initialization parameters
=>]:------------------------------------------------------
=>]:-Greenplum master hostname               = gpnode615.kjh.com
=>]:-Greenplum master data directory         = /usr/local/gpdata/gpmaster/gpseg-1
=>]:-Greenplum master port                   = 5432
=>]:-Greenplum standby master hostname       = gpnode616.kjh.com
=>]:-Greenplum standby master port           = 5432
=>]:-Greenplum standby master data directory = /usr/local/gpdata/gpmaster/gpseg-1
=>]:-Greenplum update system catalog         = On
集群初始化成功輸出信息如下:
=>:-Greenplum Database instance successfully created
=>]:-------------------------------------------------------
=>]:-To complete the environment configuration, please 
=>]:-update gpadmin .bashrc file with the following
=>]:-1. Ensure that the greenplum_path.sh file is sourced
=>]:-2. Add "export MASTER_DATA_DIRECTORY=/usr/local/gpdata/gpmaster/gpseg-1"
=>]:-   to access the Greenplum scripts for this instance:
=>]:-   or, use -d /usr/local/gpdata/gpmaster/gpseg-1 option for the Greenplum scripts
=>]:-   Example gpstate -d /usr/local/gpdata/gpmaster/gpseg-1
=>]:-Script log file = /home/gpadmin/gpAdminLogs/gpinitsystem_20180903.log
=>]:-To remove instance, run gpdeletesystem utility
=>]:-Standby Master gpnode616.kjh.com has been configured
=>]:-To activate the Standby Master Segment in the event of Master
=>]:-failure review options for gpactivatestandby
=>]:-------------------------------------------------------
=>]:-The Master /usr/local/gpdata/gpmaster/gpseg-1/pg_hba.conf post gpinitsystem
=>]:-has been configured to allow all hosts within this new
=>]:-array to intercommunicate. Any hosts external to this
=>]:-new array must be explicitly added to this file
=>]:-Refer to the Greenplum Admin support guide which is
=>]:-located in the /usr/local/greenplum-db/./docs directory
=>]:-------------------------------------------------------
系統(tǒng)登錄初始化設(shè)置:
psql修改數(shù)據(jù)庫密碼:
psql -d testgpdb
    gpdb=# alter user gpadmin with password 'gpadmin';
    gpdb=# \q

#### 遠(yuǎn)程登陸

psql -p 5432 -d testgpdb 

# 查詢當(dāng)前版本
select * from version();
設(shè)置監(jiān)聽IP和Port
vi ${MASTER_DATA_DIRECTORY}/postgresql.conf

# 設(shè)置監(jiān)聽IP (* 生產(chǎn)環(huán)境慎用)
listen_addresses = '${ host ip address } '
port = 5432

#### 設(shè)置數(shù)據(jù)庫白名單
vi ${MASTER_DATA_DIRECTORY}/pg_hba.conf

# 增加如下一條記錄,允許用戶密碼模式和可以登陸的IP地址范圍;
#TYPE  DATABASE  USER   CIDR-ADDRESS     METHOD
host    all     gpadmin     0.0.0.0/0        md5

# 測(cè)試登陸

psql -p 5432 -h 172.20.6.15 -U gpadmin -d testgpdb 
至此集群配置完成.

可以使用這篇文章的命令查看集群狀態(tài):
https://blog.51cto.com/michaelkang/2169857

參考信息:

https://gpdb.docs.pivotal.io/43170/install_guide/init_gpdb.html
https://gp-docs-cn.github.io/docs/utility_guide/admin_utilities/gprecoverseg.html

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI