1.安装环境说明
安装前先安装centos 7.2, jdk-8u91,MySQL5.7.13
2.操作系统环境准备
2.1 配置SSH免密码登录
主节点里root用户登录执行如下步骤
ssh-keygen
cd ~/.ssh/
cat id_rsa.pub >>authorized_keys
chmod 700 ~/.ssh
chmod 600 ~/.ssh/authorized_keys
先在从节点登录root执行命令
mkdir ~/.ssh/
分发主节点里配置好的authorized_keys到各从节点
scp /root/.ssh/authorized_keys root@172.31.83.172:/root/.ssh/authorized_keys
2.2 创建ambari系统用户和用户组
只在主节点操作
添加ambari安装、运行用户和用户组,也可以不创建新用户,直接使用root或者系统其他账号
- adduser ambari
- passwd ambari
2.3 开启NTP服务
所有集群上节点都需要操作
Centos 7 命令
- yum install ntp
- systemctl is-enabled ntpd
- systemctl enable ntpd
- systemctl start ntpd