一、准备工作
1、下载CDH相关文件
myslq连接jar:
http://download.softagency.net/MySQL/Downloads/Connector-J/mysql-connector-java-5.1.40.zip
2、安装Centos6.5
java-1.7.0-openjdk-1.7.0.45-2.4.3.3.el6.x86_64
java-1.6.0-openjdk-1.6.0.0-1.66.1.13.0.el6.x86_64
[root@server1 ~]# yum -y remove java-1.7.0-openjdk-1.7.0.45-2.4.3.3.el6.x86_64 \\卸载自带jdk
[root@server1 ~]# yum -y remove java-1.6.0-openjdk-1.6.0.0-1.66.1.13.0.el6.x86_64
\\卸载自带jdk
安装oracle jdk
下载oracle jdk
[root@server1 .ssh]# tar xzvf
/usr/local
/ jdk-8u121-linux-x64.tar.gz \\解压
[root@server1 .ssh]# vi /etc/profile 配置环境变量
export JAVA_HOME=/usr/local/jdk1.8
export PATH=$JAVA_HOME/bin:$PATH
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
[root@server1 .ssh]# source /etc/profile
关闭防火墙:
[root@server1 ~]# service iptables stop \\即时生效
[root@server1 ~]# chkconfig iptables off \\重启生效
修改主机名
[root@server1 ~]# vi /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=server1 \\hostname 为主机名
修改hosts
[root@server1 ~]# vi /etc/hosts
192.168.1.31 server1
192.168.1.32 server2
192.168.1.33 server3
配置ssh免密码登录
\\主机执行
[root@server1 ~]# ssh-keygen -t rsa \\回车键到结束
[root@server1 .ssh]# cd /root/.ssh/
[root@server1 .ssh]# ls
id_rsa id_rsa.pub known_hosts
[root@server1 .ssh]# cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
authorized_keys id_rsa id_rsa.pub known_hosts
\\分发到各子机
[root@server1 .ssh]# scp /root/.ssh/authorized_keys root@server2:/root/.ssh/
root@server2's password:
authorized_keys
配置ntp服务
\\所有节点执行
[root@server1 .ssh]# yum install ntp
[root@server1 .ssh]# chkconfig ntpd on \\设置开机启动
[root@server1 .ssh]# chkconfig --list ntpd \\检查是否设置成功 与系统基本相同的为“启动”
\\主机同步中心时间 阿里云时钟服务
[root@server1 .ssh]# ntpdate -u ntp1.aliyun.com
【主机ntp服务配置】
[root@server1 .ssh]# vi /etc/ntp.conf
修改为
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
server ntp1.aliyun.com prefer
#broadcast 192.168.1.255 autokey
\\启动ntp服务
[root@server1 .ssh]# service ntpd start
【子机ntp配置】
[root@server2 .ssh]# vi /etc/ntp.conf
修改server为主机的ip
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
server 192.168.1.31
#broadcast 192.168.1.255 autokey
ntp服务配置完成 可以用 date命令查看时间是否一致