最近在做集成Vertica项目,需要把Vertica做成镜像,在openstack和hos上运行,so,自己在CentOS上安装配置Vertica
一.首先安装配置centos7
centos7分区一定要用ext3或ext4,vertica要求这两种格式,磁盘类型必须选择:Standard Partition
https://my.vertica.com/docs/7.2.x/HTML/index.htm#cshid=S0160
https://my.vertica.com/docs/7.2.x/HTML/index.htm#cshid=S0170
/swap 4G
/root 300M
/var 40G
/home 20G
/ 16G
二.安装前配置centos依赖软件
安装好centos之后可以安装vertica了,vertica安装前需要准备依赖
1.配置ip获取ip
2.查看磁盘分区:df -Th -x vfat
3.配置yum源,上传vertica的rpm
cd /etc/yum.repos.d/
换成自己的yum源
yum update
三.开始vertica安装前准备
#1. 可以用如下命令创建Vertica管理用户vdbadmin并设置密码:
# useradd vdbadmin -u 666 -d /home/vertica -s /bin/bash # passwd vdbadmin ([email protected])
#2.上传RPM包到指定位置
# mount /dev/sdb4 /mnt/ # cp /mnt/vertica-7.0.2-1.x86_64.RHEL5.rpm /home/vertica # cp /mnt/vertica-client-7.0.2-1.x86_64.rpm /home/vertica # cp /mnt/vertica-console-7.0.2-1.x86_64.RHEL5.rpm /home/vertica
#3.修改主机名
#vim /etc/hosts (修改或添加:) 127.0.0.1 verticaserver
#4.关闭防火墙 (目前没装)
# chkconfig iptables --level 3 5 off # chkconfig ip6tables --level 3 5 off # service iptables stop
#5.关闭SELINUX:
# vim /etc/selinux/config 从SELINUX=enforcing改到 SELINUX=disabled # setenforce 0
还有个最麻烦的配置是I/O Scheduling
https://my.vertica.com/docs/7.2.x/HTML/index.htm#cshid=S0151
1.查看ip地址:ip addr
时间: 2024-10-13 16:07:55