本文档描述CENTOS7.2操做系统部署CDH企业版的过程。Cloudera企业级数据中心的安装主要分为4个步骤:html
1.集群服务器配置,包括安装操做系统、关闭防火墙、同步服务器时钟等;java
2.外部数据库安装node
3.安装Cloudera管理器;mysql
4.安装CDH集群;linux
这篇文档将着重介绍Cloudera管理器与CDH的安装,并基于如下假设:sql
5.采用ec2-user对集群进行部署shell
6.您已经下载CDH和CM的安装包数据库
集群中各个节点之间能互相通讯使用静态IP地址。IP地址和主机名经过/etc/hosts配置,主机名/etc/hostname进行配置。apache
以cm节点(172.31.2.159)为例:centos
/etc/hostname文件以下:
| ip-172-31-2-159 |
|:----|
或者你能够经过命令修改当即生效
| ec2-user@ip-172-31-2-159 ~$ sudo hostnamectl set-hostname ip-172-31-2-159 |
|:----|
注意:这里修改hostname跟REDHAT6的区别
/etc/hosts文件以下:
| 172.31.2.159 ip-172-31-2-159172.31.12.108 ip-172-31-12-108172.31.5.236 ip-172-31-5-236172.31.7.96 ip-172-31-7-96 |
|:----|
以上两步操做,在集群中其它节点作相应配置。
在全部节点执行sudo setenforce 0 命令,此处使用批处理shell执行:
| ec2-user@ip-172-31-2-159 ~$ sh ssh_do_all.sh node.list "sudo setenforce 0" |
|:----|
集群全部节点修改/etc/selinux/config文件以下:
| SELINUX=disabledSELINUXTYPE=targeted |
|:----|
集群全部节点执行 sudo systemctl stop命令,此处经过shell批量执行命令以下:
在CentOS7.2的操做系统上,已经默认的安装了chrony,配置chrony时钟同步,将cm(172.31.2.159)服务做为本地chrony服务器,其它3台服务器与其保持同步,配置片断:
| ec2-user@ip-172-31-2-159 ~$ sh ssh_do_all.sh node.list "sudo systemctl restart chronyd" |
|:----|
| ec2-user@ip-172-31-2-159 ~$ sh ssh_do_all.sh node.list "chronyc sources" |
|:----|
| ec2-user@ip-172-31-2-159 ~$ sudo yum -y install httpd |
|:----|
| ec2-user@ip-172-31-2-159 ~$ sudo systemctl start httpdec2-user@ip-172-31-2-159 ~$ sudo systemctl stop httpd |
|:----|
MariaDB-10.2.1-centos7-x86\_64-client.rpm
MariaDB-10.2.1-centos7-x86\_64-common.rpm
MariaDB-10.2.1-centos7-x86\_64-compat.rpm
MariaDB-10.2.1-centos7-x86\_64-server.rpm
将包下载到本地,放在同一目录,执行createrepo命令生成rpm元数据。
此处使用apache2,将上述mariadb10.2.1目录移动到/var/www/html目录下, 使得用户能够经过HTTP访问这些rpm包。
[ec2-user@ip-172-31-2-159 ~]$ sudo systemctl start mariadb [ec2-user@ip-172-31-2-159 ~]$ sudo /usr/bin/mysql_secure_installation NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MariaDB to secure it, we'll need the current password for the root user. If you've just installed MariaDB, and you haven't set the root password yet, the password will be blank, so you should just press enter here. Enter current password for root (enter for none): OK, successfully used password, moving on... Setting the root password ensures that nobody can log into the MariaDB root user without the proper authorisation. Set root password? [Y/n] Y New password: Re-enter new password: Password updated successfully! Reloading privilege tables.. ... Success! By default, a MariaDB installation has an anonymous user, allowing anyone to log into MariaDB without having to have a user account created fo them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? [Y/n] Y ... Success! Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] n ... skipping. By default, MariaDB comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? [Y/n] Y - Dropping test database... ... Success! - Removing privileges on test database... ... Success! Reloading the privilege tables will ensure that all changes made so fa will take effect immediately. Reload privilege tables now? [Y/n] Y ... Success! Cleaning up... All done! If you've completed all of the above steps, your MariaDB installation should now be secure. Thanks for using MariaDB!
将Cloudera Manager安装须要的7个rpm包下载到本地,放在同一目录,执行createrepo命令生成rpm元数据。
此处使用apache2,将上述cdh5.10.0/cm5.10.0目录移动到/var/www/html目录下, 使得用户能够经过HTTP访问这些rpm包。
| ec2-user@ip-172-31-2-159 ~$ sudo mv cdh5.10.0/ cm5.10.0/ /var/www/html/ |
|:----|
| ec2-user@ip-172-31-2-159 ~$ sudo yum -y install cloudera-manager-server |
|:----|
| ec2-user@ip-172-31-2-159 ~$ sudo systemctl start cloudera-scm-server |
|:----|
| ec2-user@ip-172-31-2-159 ~$ sudo netstat -lnpt | grep 7180tcp 0 0 0.0.0.0:7180 0.0.0.0:* LISTEN 6890/java |
|:----|
3.选择60试用,点击继续
4.点击“继续”
5.输入主机ip或者名称,点击搜索找到主机后点击继续
6.点击“继续”
7.使用parcel选择,点击“更多选项”,点击“-”删除其它全部地址,输入
http://172.31.2.159/cm5.10.0/点击“保存更改”
8.选择自定义存储库,输入cm的http地址
9.点击“继续”,进入下一步安装jdk
10.点击“继续”,进入下一步,默认多用户模式
11.点击“继续”,进入下一步配置ssh帐号密码
12.点击“继续”,进入下一步,安装Cloudera Manager相关到各个节点
13.点击“继续”,进入下一步安装cdh到各个节点
14.点击“继续”,进入下一步主机检查,确保全部检查项均经过
点击完成进入服务安装向导。
2.点击“继续”,进入集群角色分配
3.点击“继续”,进入下一步,测试数据库链接
4.测试成功,点击“继续”,进入目录设置,此处使用默认默认目录,根据实际状况进行目录修改
5.点击“继续”,进入各个服务启动
6.安装成功
7.安装成功后进入home管理界面
“醉酒鞭名马,少年多浮夸! 岭南浣溪沙,呕吐酒肆下!挚友不愿放,数据玩的花!”