主頁 > 知識庫 > centos6.6下如何安裝GreenPlum4.3.5.2?

centos6.6下如何安裝GreenPlum4.3.5.2?

熱門標(biāo)簽:新鄉(xiāng)智能電話機(jī)器人有用嗎 AI智能語音外呼系統(tǒng)是什么 北京外呼系統(tǒng)官網(wǎng) 海外文化宮地圖標(biāo)注 淮安人工外呼系統(tǒng) 荊門真人語音電話機(jī)器人哪個好 北京大興區(qū)地圖標(biāo)注中心 ai外呼系統(tǒng)定制 浙江虛擬外呼系統(tǒng)費(fèi)用

在GP官網(wǎng),看不到關(guān)于最新GP在Centos上的對應(yīng)版本,就使用RedHat的版本就好了。

前言:

GP的安裝大致是這樣的,選擇一臺主機(jī)作為Master機(jī),其他作為Segment機(jī)。由于沒那么多機(jī)子,就虛擬機(jī)開了三個centos6.6,采用1+2模式。

安裝時候,記住 GP可以先在Master機(jī)上裝好,后續(xù)通過在Maser機(jī)和Segment機(jī)間建立互信(gpssh-exkeys)來進(jìn)行類似遠(yuǎn)程安裝,通過 gpssh 就可以登錄到所有機(jī)子上,進(jìn)行你想要的包括建用戶,拷貝安裝好的GP,等等一系列操作。 當(dāng)然,在安裝前,有的人會配置下 內(nèi)核參數(shù)、限制參數(shù)等等,看你需要。因?yàn)槲姨摂M機(jī),硬件基本達(dá)不到官網(wǎng)要求,就舍去這步了。

安裝前準(zhǔn)備(可選)

1、在Master機(jī)的  /etc/sysctl.conf 中添加

[html] view plaincopy

kernel.shmmax = 500000000  
kernel.shmmni = 4096  
kernel.shmall = 4000000000  
kernel.sem = 250 512000 100 2048  
kernel.sysrq = 1  
kernel.core_uses_pid = 1  
kernel.msgmnb = 65536  
kernel.msgmax = 65536  
kernel.msgmni = 2048  
net.ipv4.tcp_syncookies = 1  
net.ipv4.ip_forward = 0  
net.ipv4.conf.default.accept_source_route = 0  
net.ipv4.tcp_tw_recycle = 1  
net.ipv4.tcp_max_syn_backlog = 4096  
net.ipv4.conf.all.arp_filter = 1  
net.ipv4.ip_local_port_range = 1025 65535  
net.core.netdev_max_backlog = 10000  
net.core.rmem_max = 2097152  
net.core.wmem_max = 2097152  
vm.overcommit_memory = 2  

重啟下機(jī)子或者 sysctl -p 生效

2、在Master機(jī)  /etc/security/limits.conf 添加

[html] view plaincopy

* soft nofile 65536  
* hard nofile 65536  
* soft nproc 131072  
* hard nproc 131072  

!!! 注意,對于RedHat 6.x和Centos6.x的機(jī)子,在/etc/security/limits.d/90-nproc.conf  的參數(shù)會覆蓋上述文件參數(shù)。如果這兩個文件都設(shè)置參數(shù),保證參數(shù)在90-nproc.conf設(shè)置好了。

3、關(guān)閉防火墻

chkconfig iptables off  ;//永久關(guān)閉,重啟后不啟動

service iptables stop ;//重啟后會啟動 ,用service iptables status檢查狀態(tài)。

開始GP安裝

1、在Master上安裝GP,root權(quán)限

將下載好的 greenplum-db-4.3.5.2-build-1-RHEL5-x86_64.zip 放到一個目錄下,解壓(unzip),得到一個ReadMe和.bin文件,默認(rèn)GP是裝到 /usr/local/greenplum下的,其實(shí)裝哪里都可以,這邊我們裝到 /opt/greenplum/  下。

執(zhí)行 bin文件,解壓目錄下  ./ greenplum-db-4.3.5.2-build-1-RHEL5-x86_64.bin

一路空格鍵下去,直到叫你輸 yes|no ,打yes

選安裝目錄,將你要安裝的目錄輸入,這里 /opt/greenplum/greenplum-db-4.3.5.2

再一路yes下去就安裝好了,很快。

2、習(xí)慣先在Master機(jī)上建個 負(fù)責(zé)GP數(shù)據(jù)庫的用戶 gpadmin,后續(xù)segment機(jī)的用戶 gpadmin 再通過 gpssh添加

一般一開始是沒gpadmin用戶的,直接新建

groupadd -g 530 gpadmin

useradd -g 530 -u 530 -m -d /home/gpadmin -s /bin/bash gpadmin

passwd gpadmin ;添加密碼

對GP安裝文件夾修改權(quán)限

chown -R gpadmin:gpadmin /home/gpadmin

chown -R gpadmin:gpadmin /opt/greenplum

將GP安裝目錄下的一個環(huán)境變量文件添加到用戶中。

source /opt/greenplum/greenplum-db/greenplum_path.sh ;/opt/greenplum/greenplum-db是/opt/greenplum/greenplum-db-4.3.5.2的鏈接,沒有就自己鏈接一個 ln -s /opt/greenplum/greenplum-db-4.3.5.2  /opt/greenplum/greenplum-db

3、建立主機(jī)間的互信

首先,在Master機(jī)上,編輯 /etc/hosts文件,

將Master機(jī)和segment機(jī)的Ip ,hostname輸入。

# /etc/hosts

127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4

::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

192.168.127.136 mdw  #master機(jī)

192.168.127.137 sdw1 #segment機(jī)

192.168.127.138 sdw2 #segment機(jī)

其次,在某個目錄下 如 /var 下建一個保護(hù)所有主機(jī)hostname的文件hostlists(名字隨便取)和含segment機(jī)hostname的seg_hosts。

/var/hostlists:

mdw

sdw1

sdw2

/var/seg_hosts

sdw1

sdw2

開始建立互信

gpssh-exkeys -f /var/hostlists

[root@localhost ~]$ gpssh-exkeys -f /var/hostlists 

[STEP 1 of 5] create local ID and authorize on local host

  ... /home/root/.ssh/id_rsa file exists ... key generation skipped

[STEP 2 of 5] keyscan all hosts and update known_hosts file

[STEP 3 of 5] authorize current user on remote hosts

  ... send to mdw

  ... send to sdw1

  ***

  *** Enter password for sdw1: 

[STEP 4 of 5] determine common authentication file content

[STEP 5 of 5] copy authentication files to all remote hosts

  ... finished key exchange with mdw

  ... finished key exchange with sdw1

[INFO] completed successfully

注意:如果提示 沒有秘鑰就   ssh-keygen -t rsa ; ssh-add /root/.ssh/id_rsa 。 就可以得到秘鑰。   如果執(zhí)行 ssd-add 出現(xiàn),Could not open a connection to your authentication agent ,則執(zhí)行 ssh-agent bash. 即可。

建立互信后,就可以通過 gpssh -f /var/seg_hosts 訪問所有的機(jī)子了。

標(biāo)簽:安陽 南通 梅州 亳州 盤錦 阿里 贛州 蚌埠

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《centos6.6下如何安裝GreenPlum4.3.5.2?》,本文關(guān)鍵詞  centos6.6,下,如何,安裝,GreenPlum4.3.5.2,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《centos6.6下如何安裝GreenPlum4.3.5.2?》相關(guān)的同類信息!
  • 本頁收集關(guān)于centos6.6下如何安裝GreenPlum4.3.5.2?的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章