开始学习greenplum,小试了一把。
软件版本:greenplum-db-4.3.9.1-build-1-rhel5-x86_64.zip
系统版本:redhat 6.8
ps:听说5版本有bug,7版本也有问题
注意选择安装系统为:数据库服务器,文件格式为XFS
GreenPlum-db安装
一、安装环境准备(需要在每个节点上执行相应的操作)
1.1网络配置
1)修改 # vim/etc/sysconfig/network-scripts/ifcfg-eth*文件(实际网卡文件名来,目录不变)
设置好ip后重启网络服务
DEVICE="eth0"
HWADDR="08:00:27:BF:91:4F"
NM_CONTROLLED="yes"
ONBOOT="yes"
BOOTPROTO=static
IPADDR=192.168.2.101(实际情况来)
NETMASK=255.255.255.0(实际情况来)
GATEWAY=192.168.2.0(实际情况来)
重启网卡
# service networkrestart
2)关闭防火墙和selinux
# chkconfig iptablesoff
修改# vim /etc/selinux/config文件
SELINUX=disabled
1.2系统参数配置
1)# vim/etc/sysctl.conf
net.ipv4.ip_forward = 0
net.ipv4.conf.default.accept_source_route= 0
kernel.sysrq = 1
kernel.core_uses_pid = 1
net.ipv4.tcp_syncookies = 1
kernel.msgmnb = 65536
kernel.msgmax = 65536
kernel.sem = 250 64000 100 512
kernel.shmmax = 500000000
kernel.shmmni = 4096
kernel.shmall = 4000000000
net.ipv4.tcp_tw_recycle=1
net.ipv4.tcp_max_syn_backlog=4096
net.core.netdev_max_backlog=10000
vm.overcommit_memory=2
2)修改文件打开数等限制
# vim /etc/security/limits.conf
* soft nofile 65536
* hard nofile 65536
* soft nproc 131072
* hard nproc 131072
# vim/etc/security/limits.d/90-nproc.conf
* soft nofile 65536
* hard nofile 65536
* soft nproc 131072
* hard nproc 131072
3)修改scheduler,设置Linux调度器规则,默认为CFQ更改为deadline
#echo deadline > /sys/block/sda/queue/scheduler
检查
# more /sys/block/sda/queue/scheduler
noop anticipatory [deadline] cfq
参考linux 内核四种算法,anticipatory 最差,很多linux版本取消了此算法。
4)编辑