【Hadoop】Ambari 安装

本篇结构:

  • 准备条件
  • 使用本地仓库离线安装
  • 配置 Ambari
  • 启动 Ambari
  • Log In to Apache Ambari
  • 创建集群

一、准备条件

1.1、软件需求

On each of your hosts:

  • yum and rpm (RHEL/CentOS/Oracle/Amazon Linux)

  • zypper and php_curl (SLES)

  • apt (Debian/Ubuntu)

  • scp, curl, unzip, tar, and wget

  • OpenSSL (v1.01, build 16 or later)

  • Python

    • For SLES 12:

      Python 2.7.x

    • For Amazon Linux 2, CentOS 7, Ubuntu 14, Ubuntu 16, Ubuntu 18, and Debian 9:

      Python 2.7.x

1.2、内存需求

The Ambari host should have at least 1 GB RAM, with 500 MB free.

To check available memory on any host, run:

free -m

1.3、最大打开文件需求

The recommended maximum number of open file descriptors is 10000, or more. To check the current value set for the maximum number of open file descriptors, execute the following shell commands on each host:

ulimit -Sn
ulimit -Hn

If the output is not greater than 10000, run the following command to set it to a suitable default:

ulimit -n 10000

1.4、Collect Information

The base directories you want to use as mount points for storing:

  • NameNode data
  • DataNodes data
  • Secondary NameNode data
  • Oozie data
  • YARN data
  • ZooKeeper data, if you install ZooKeeper
  • Various log, pid, and db files, depending on your install type
Important
You must use base directories that provide persistent storage locations for your components and your Hadoop data. Installing components in locations that may be removed from a host may result in cluster failure or data loss. For example: Do Not use /tmp in a base directory path.

1.5、Prepare the Environment

# buntu
apt-get install ntp
update-rc.d ntp defaults
# Ubuntu
sudo ufw disable
sudo iptables -X
sudo iptables -t nat -F
sudo iptables -t nat -X
sudo iptables -t mangle -F
sudo iptables -t mangle -X
sudo iptables -P INPUT ACCEPT
sudo iptables -P FORWARD ACCEPT
sudo iptables -P OUTPUT ACCEPT

二、使用本地仓库离线安装

2.1、Create an HTTP server

可以使用 Tomcat,也可以使用 Ngnix,这里用 Ngnix:

sudo apt-get install nginx

2.2、On your mirror server, create a directory for your web server.

mkdir -p /var/www/ambari/HDP-UTILS
cd /var/www/ambari

2.3、Obtain the compressed tape archive file (tarball) for the repository you want to create.

ambari仓库HDP仓库下载符合你的操作系统的ambari和HDP安装程序,这里下载的是Ubuntu 16的安装包

image
wget http://public-repo-1.hortonworks.com/ambari/ubuntu16/2.x/updates/2.7.1.0/ambari-2.7.1.0-ubuntu16.tar.gz
image
wget http://public-repo-1.hortonworks.com/HDP/ubuntu16/3.x/updates/3.0.1.0/HDP-3.0.1.0-ubuntu16-deb.tar.gz

wget http://public-repo-1.hortonworks.com/HDP-UTILS-1.1.0.22/repos/ubuntu16/HDP-UTILS-1.1.0.22-ubuntu16.tar.gz

wget http://public-repo-1.hortonworks.com/HDP-GPL/ubuntu16/3.x/updates/3.0.1.0/HDP-GPL-3.0.1.0-ubuntu16-gpl.tar.gz

2.4、解压上面下载的文件到指定目录

tar -zxvf ambari-2.7.1.0-ubuntu16.tar.gz
tar -zxvf HDP-GPL-3.0.1.0-ubuntu16-gpl.tar.gz
tar -zxvf HDP-3.0.1.0-ubuntu16-deb.tar.gz 
tar -zxvf HDP-UTILS-1.1.0.22-ubuntu16.tar.gz -C HDP-UTILS

可以看到当前目录(/var/www/ambari)下有如下文件夹:

ambari/  HDP/  HDP-GPL/  HDP-UTILS/

2.5、创建 nginx 配置文件 ambari

cd /etc/nginx/sites-available
vi ambari

ambari 文件内容如下:

server {
    listen 80;
    listen [::]:80;

    server_name <host-name>; # <host-name>为服务器主机名

    root /var/www/ambari;

    location ^~ / {
        autoindex on;
        autoindex_exact_size off;
        autoindex_localtime on;
    }


    location ~ /\.ht {
        deny all;
    }

}

重启nginx服务器:

cd ../sites-enabled
ln -s ../sites-available/ambari ambari
service nginx restart

2.6、指定仓库地址

进入到/etc/apt/sources.list.d文件夹下

创建以下文件,记得把<host-name>替换为当前机器的ip

vi ambari.list

# 因ambari每个大版本后都有小版本号,因此请自行检查路径是否正确
deb http://<host-name>/ambari/ubuntu16/2.7.1.0-169/ Ambari main

vi hdp.list

# 因ambari每个大版本后都有小版本号,因此请自行检查路径是否正确
deb http://<host-name>/HDP/ubuntu16/3.0.1.0-187/ HDP main
deb http://<host-name>/HDP-GPL/ubuntu16/3.0.1.0-187/ HDP-GPL main
deb http://<host-name>/HDP-UTILS/ubuntu16/1.1.0.22/ HDP-UTILS main

将这两个文件拷贝到集群的所有机器上,现在本地仓库已经安装完成。

三、安装 Ambari

保证准备工作进行正确。首先执行下面命令导入key:

sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com B9733A7A07513CAD

sudo apt-get update

使用下面的命令检查update是否成功,即包信息是否已经被缓存。

apt-cache showpkg ambari-server
apt-cache showpkg ambari-agent
apt-cache showpkg ambari-metrics-assembly

果一切正常,就可以开始安装Ambari了。

sudo apt-get install ambari-server

三、配置 Ambari

执行sudo ambari-server setup配置Ambari。
遇到Customize user account for ambari-server daemon选择n,使Ambari 在 root 下执行,当然也可以选择其它用户。
然后输入数字,选择要安装的JDK版本并等待下载安装完成。
Enter advanced database configuration选择n来使用内置数据库,选择 y 自定义数据库,根据提示输入相应信息即可。

https://docs.hortonworks.com/HDPDocuments/Ambari-2.7.1.0/bk_ambari-installation/content/set_up_the_ambari_server.html

四、启动 Ambari

sudo ambari-server start
sudo ambari-server status
sudo ambari-server stop

五、Log In to Apache Ambari

1.Point your web browser to

http://<your.ambari.server>:8080

2.Log in to the Ambari Server using the default user name/password: admin/admin. You can change these credentials later.

六、创建集群

image

点击Launch Install Wizard按钮,进入Ambari集群安装向导。根据页面提示操作一步步完成即可。

1.给集群命名,名称不能包含特殊字符

2.选择和本地仓库下载的对应的版本

3.Install Options 这步主要配置所有的节点FQDNS,并上传主节点私钥

4.Confirm Hosts 这里观察安装进度

我这里安装出了错误,参考下面解决

https://community.hortonworks.com/content/supportkb/188002/ioerror-request-to-httpslocalhost8441agentv1regist.html

force_https_protocol=PROTOCOL_TLSv1_2

image

5.Choose Services

Choose which services you want to install on your cluster.

6.Assign Masters

7.Assign Slaves and Clients

8.Customize Services

9.Configure Identities

10.Review

11.Install, Start and Test

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,125评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,293评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,054评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,077评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,096评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,062评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,988评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,817评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,266评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,486评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,646评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,375评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,974评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,621评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,642评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,538评论 2 352

推荐阅读更多精彩内容