zoukankan      html  css  js  c++  java
  • Hadoop2.6集群环境搭建(HDFS HA+YARN)原来4G内存也能任性一次.

     准备工作:

    1、笔记本4G内存 ,操作系统WIN7 (屌丝的配置)

    2、工具VMware Workstation

    3、虚拟机:CentOS6.4共四台

    虚拟机设置:

    每台机器:内存512M,硬盘40G,网络适配器:NAT模式

     

    选择高级,新生成虚机Mac地址(克隆虚拟机,Mac地址不会改变,每次最后手动重新生成)

     

    编辑虚拟机网络:

     

    点击NAT设置,查看虚机网关IP,并记住它,该IP在虚机的网络设置中非常重要。

    NAT设置默认IP会自动生成,但是我们的集群中IP需要手动设置。

     

    本机Win7 :VMnet8 网络设置

     

    实验环境:

    Ip

    hostname

    role

    192.168.249.130

    SY-0130

    ActiveNameNode

    192.168.249.131 

    SY-0131

    StandByNameNode

    192.168.249.132

    SY-0132

    DataNode1

    192.168.249.133

    SY-0133

    DataNode2

     

     

    Linux网络设置:

    1、新建用户如:hadoop。不建议使用root用户搭建集群(root权限过大)

    2、使得hadoop用户获得sudo权限。

    [root@SY-0130 ~]# vi /etc/sudoers
    
    ## Allow root to run any commands anywhere
    
    root    ALL=(ALL)       ALL
    
    hadoop  ALL=(ALL)       ALL

    3、查看当前虚机当前网络使用网卡设备

    [root@SY-0130 hadoop]# ifconfig
    eth2      Link encap:Ethernet  HWaddr 00:50:56:35:8E:E8  
              inet addr:192.168.249.130  Bcast:192.168.249.255  Mask:255.255.255.0
              inet6 addr: fe80::250:56ff:fe35:8ee8/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:877059 errors:0 dropped:0 overruns:0 frame:0
              TX packets:597769 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:865720294 (825.6 MiB)  TX bytes:324530557 (309.4 MiB)
              Interrupt:19 Base address:0x2024 
    
    lo        Link encap:Local Loopback  
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:1354 errors:0 dropped:0 overruns:0 frame:0
              TX packets:1354 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0 
              RX bytes:196675 (192.0 KiB)  TX bytes:196675 (192.0 KiB)

     

    [root@SY-0130 ~]# cat /proc/net/dev,当前网卡,我的为eth2

    [root@SY-0130 ~]# cat /proc/net/dev
    Inter-|   Receive                                                |  Transmit
     face |bytes    packets errs drop fifo frame compressed multicast|bytes    packets errs drop fifo colls carrier compressed
        lo:  196675    1354    0    0    0     0          0         0   196675    1354    0    0    0     0       0          0
      eth2:865576893  875205    0    0    0     0          0         0 324425517  596433    0    0    0     0       0          0

     

    4、查看当前网卡对应的Mac地址

    [root@SY-0130 ~]# cat /etc/udev/rules.d/70-persistent-net.rules 
    # This file was automatically generated by the /lib/udev/write_net_rules
    # program, run by the persistent-net-generator.rules rules file.
    #
    # You can modify it, as long as you keep each rule on a single
    # line, and change only the value of the NAME= key.
    
    # PCI device 0x1022:0x2000 (vmxnet)
    SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:b5:fd:bb", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"
    
    # PCI device 0x1022:0x2000 (vmxnet)
    SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:50:56:35:8e:e8", ATTR{type}=="1", KERNEL=="eth*", NAME="eth2"

     

    5、Network Configuration

       [root@SY-0130 ~]# setup 

     

     

    选择eth2,进行设置,更改为当前网卡设备eth2,并且进行IP、网管、DNS设置。

     

    DNS Server 与Win7的网络中的DNS Server一致,这样虚拟机也可以连接Internet网了,方便下载安装软件。

    另外还有将防火墙关闭。

    6、修改hostname

    [root@SY-0130 ~]# vi /etc/sysconfig/network
    NETWORKING=yes
    HOSTNAME=SY-0130

    7、修改hosts

    [hadoop@SY-0130 ~]$ sudo vi /etc/hosts

    #添加如下内容

    192.168.249.130 SY-0130
    192.168.249.131 SY-0131
    192.168.249.132 SY-0132
    192.168.249.133 SY-0133

    8、重启虚机.  reboot 

    软件安装:

    (注:用户hadoop登录SY-130)

    1、SY-130用户目录创建toolkit 文件夹,用来保存所有软件安装包,建立labc文件作为本次实验环境目录。

    [hadoop@SY-0130 ~]$ mkdir labc

    [hadoop@SY-0130 ~]$ mkdir toolkit

    [hadoop@SY-0130 ~]$ ls

    labc  toolkit

    #我将下载的软件包存放在toolkit中如下

    [hadoop@SY-0130 toolkit]$ ls
    hadoop-2.5.2.tar.gz  hadoop-2.6.0.tar.gz  jdk-7u71-linux-i586.gz  scala-2.10.3.tgz  spark-1.2.0-bin-hadoop2.3.tgz  zookeeper-3.4.6.tar.gz

    1、JDK安装及环境变量设置

    [hadoop@SY-0130 ~]$ mkdir lab

    #我将jdk7安装在lab目录

    [hadoop@SY-0130 jdk1.7.0_71]$ pwd

    /home/hadoop/lab/jdk1.7.0_71

    #环境变量设置:

    [hadoop@SY-0130 ~]$ vi .bash_profile

    # User specific environment and startup programs
    
    export JAVA_HOME=/home/hadoop/lab/jdk1.7.0_71
    
    PATH=$JAVA_HOME/bin:$PATH:$HOME/bin
    export PATH
    
    export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar

    #设置生效

    [hadoop@SY-0130 ~]$ source .bash_profile

    2、Hadoop2.6安装及设置

    #解压toolkit 文件夹中的hadoop-2.6.0.tar.gz到. /home/hadoop/labc目录

    [hadoop@SY-0130 hadoop-2.6.0]$ pwd

    /home/hadoop/labc/hadoop-2.6.0

    JDK,Hadoop基本安装完成,除了一些配置,现在可以将此虚拟机进行克隆。

    该虚拟机命名:

    130.ActiveNameNode

    我将它克隆了3次,分别命名为:

    131.StandbyNameNode

    132.DataNode1

    133..DataNode2

    并且将克隆之后的3个虚拟机,重新生成了Mac地址,查看了他们分别使用的网卡,更改了对应的IP,dns,hostname , hosts,关闭防火墙。 具体操作按照上述说明操作即可。在网络配置这块我花了不少的时间。

     

    软件配置:

    至此,我拥有了四台安装好了JDK、Hadoop、及配置好对应的IP,能够访问Internet的Linux虚机。

    在具体Hadoop HA 配置前,为了让节点之间通信方便,将4节点之间设置SSH免密码登录。

     

    1、SSH免密码登录

    [hadoop@SY-0130 ~]$ ssh-keygen -t rsa     #一直回车即可.

    #查看生成公钥

    [hadoop@SY-0130 .ssh]$ ls

     id_rsa  id_rsa.pub  known_hosts

    #远程复制id_rsa.pub到SY-0131, SY-0132, SY-0133 节点。

    [hadoop@SY-0130 .ssh]$ scp id_rsa.pub hadoop@SY-0131:.ssh/authorized_keys

    [hadoop@SY-0130 .ssh]$ scp id_rsa.pub hadoop@SY-0132:.ssh/authorized_keys

    [hadoop@SY-0130 .ssh]$ scp id_rsa.pub hadoop@SY-0133:.ssh/authorized_keys

    #注意:SY-130为ActiveName , 在此我只配置了SY-0130到其他节点的免密码登录,即只是单向,没有设置双向。

    #完成上述配置后,测试SY-130免密码登录

    #连接sy-0131
    [hadoop@SY-0130 ~]$ ssh sy-0131
    Last login: Tue Jan  6 07:32:46 2015 from 192.168.249.1
    [hadoop@SY-0131 ~]$ 
    #ctrl+d 可退出连接
    #连接sy-0132
    [hadoop@SY-0130 ~]$ ssh sy-0132
    Last login: Tue Jan  6 21:25:16 2015 from 192.168.249.1
    [hadoop@SY-0132 ~]$ 
    #连接sy-0132
    [hadoop@SY-0130 ~]$ ssh sy-0133
    Last login: Tue Jan  6 21:25:18 2015 from 192.168.249.1
    [hadoop@SY-0133 ~]$ 
    #测试成功

     

    2、Hadoop设置

    #进入hadoop安装目录

    [hadoop@SY-0130 hadoop-2.6.0]$ pwd

    /home/hadoop/labc/hadoop-2.6.0

    #修改 hadoop-env.sh ,添加Java环境变量

    [hadoop@SY-0130 hadoop-2.6.0]$ vi etc/hadoop/hadoop-env.sh

    # The java implementation to use.
    export JAVA_HOME=/home/hadoop/lab/jdk1.7.0_71

    #修改core-site.xml

    <?xml version="1.0"?>
    <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
    
    <!--
       Licensed to the Apache Software Foundation (ASF) under one or more
       contributor license agreements.  See the NOTICE file distributed with
       this work for additional information regarding copyright ownership.
       The ASF licenses this file to You under the Apache License, Version 2.0
       (the "License"); you may not use this file except in compliance with
       the License.  You may obtain a copy of the License at
    
           http://www.apache.org/licenses/LICENSE-2.0
    
       Unless required by applicable law or agreed to in writing, software
       distributed under the License is distributed on an "AS IS" BASIS,
       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
       See the License for the specific language governing permissions and
       limitations under the License.
    -->
    
    <!-- Do not modify this file directly.  Instead, copy entries that you -->
    <!-- wish to modify from this file into core-site.xml and change them -->
    <!-- there.  If core-site.xml does not already exist, create it.      -->
    
    <configuration>
    
    <property>
      <name>fs.defaultFS</name>
      <value>hdfs://SY-0130:8020</value>
      <description>The name of the default file system.  A URI whose
      scheme and authority determine the FileSystem implementation.  The
      uri's scheme determines the config property (fs.SCHEME.impl) naming
      the FileSystem implementation class.  The uri's authority is used to
      determine the host, port, etc. for a filesystem.</description>
    </property>
    
    </configuration>

     

    #修改hdfs-site.xml

    <?xml version="1.0"?>
    <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
    
    <!--
       Licensed to the Apache Software Foundation (ASF) under one or more
       contributor license agreements.  See the NOTICE file distributed with
       this work for additional information regarding copyright ownership.
       The ASF licenses this file to You under the Apache License, Version 2.0
       (the "License"); you may not use this file except in compliance with
       the License.  You may obtain a copy of the License at
    
           http://www.apache.org/licenses/LICENSE-2.0
    
       Unless required by applicable law or agreed to in writing, software
       distributed under the License is distributed on an "AS IS" BASIS,
       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
       See the License for the specific language governing permissions and
       limitations under the License.
    -->
    
    <!-- Do not modify this file directly.  Instead, copy entries that you -->
    <!-- wish to modify from this file into hdfs-site.xml and change them -->
    <!-- there.  If hdfs-site.xml does not already exist, create it.      -->
    
    <configuration>
    
    <property>
      <name>dfs.nameservices</name>
      <value>hadoop-test</value>
      <description>
        Comma-separated list of nameservices.
      </description>
    </property>
    
    <property>
      <name>dfs.ha.namenodes.hadoop-test</name>
      <value>nn1,nn2</value>
      <description>
        The prefix for a given nameservice, contains a comma-separated
        list of namenodes for a given nameservice (eg EXAMPLENAMESERVICE).
      </description>
    </property>
    
    <property>
      <name>dfs.namenode.rpc-address.hadoop-test.nn1</name>
      <value>SY-0130:8020</value>
      <description>
        RPC address for nomenode1 of hadoop-test
      </description>
    </property>
    
    <property>
      <name>dfs.namenode.rpc-address.hadoop-test.nn2</name>
      <value>SY-0131:8020</value>
      <description>
        RPC address for nomenode2 of hadoop-test
      </description>
    </property>
    
    <property>
      <name>dfs.namenode.http-address.hadoop-test.nn1</name>
      <value>SY-0130:50070</value>
      <description>
        The address and the base port where the dfs namenode1 web ui will listen on.
      </description>
    </property>
    
    <property>
      <name>dfs.namenode.http-address.hadoop-test.nn2</name>
      <value>SY-0131:50070</value>
      <description>
        The address and the base port where the dfs namenode2 web ui will listen on.
      </description>
    </property>
    
    <property>
      <name>dfs.namenode.name.dir</name>
      <value>file:///home/hadoop/labc/hdfs/name</value>
      <description>Determines where on the local filesystem the DFS name node
          should store the name table(fsimage).  If this is a comma-delimited list
          of directories then the name table is replicated in all of the
          directories, for redundancy. </description>
    </property>
    
    <property>
      <name>dfs.namenode.shared.edits.dir</name>
      <value>qjournal://SY-0131:8485;SY-0132:8485;SY-0133:8485/hadoop-test</value>
      <description>A directory on shared storage between the multiple namenodes
      in an HA cluster. This directory will be written by the active and read
      by the standby in order to keep the namespaces synchronized. This directory
      does not need to be listed in dfs.namenode.edits.dir above. It should be
      left empty in a non-HA cluster.
      </description>
    </property>
    
    <property>
      <name>dfs.datanode.data.dir</name>
      <value>file:///home/hadoop/labc/hdfs/data</value>
      <description>Determines where on the local filesystem an DFS data node
      should store its blocks.  If this is a comma-delimited
      list of directories, then data will be stored in all named
      directories, typically on different devices.
      Directories that do not exist are ignored.
      </description>
    </property>
    
    <property>
      <name>dfs.ha.automatic-failover.enabled</name>
      <value>false</value>
      <description>
        Whether automatic failover is enabled. See the HDFS High
        Availability documentation for details on automatic HA
        configuration.
      </description>
    </property>
    
    <property>
      <name>dfs.journalnode.edits.dir</name>
      <value>/home/hadoop/labc/hdfs/journal/</value>
    </property>
    
    </configuration>

     

    #修改mapred-site.xml

    <?xml version="1.0"?>
    <!--
       Licensed to the Apache Software Foundation (ASF) under one or more
       contributor license agreements.  See the NOTICE file distributed with
       this work for additional information regarding copyright ownership.
       The ASF licenses this file to You under the Apache License, Version 2.0
       (the "License"); you may not use this file except in compliance with
       the License.  You may obtain a copy of the License at
    
           http://www.apache.org/licenses/LICENSE-2.0
    
       Unless required by applicable law or agreed to in writing, software
       distributed under the License is distributed on an "AS IS" BASIS,
       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
       See the License for the specific language governing permissions and
       limitations under the License.
    -->
    <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
    
    <!-- Do not modify this file directly.  Instead, copy entries that you -->
    <!-- wish to modify from this file into mapred-site.xml and change them -->
    <!-- there.  If mapred-site.xml does not already exist, create it.      -->
    
    <configuration>
    
    <!-- MR YARN Application properties -->
    
    <property>
      <name>mapreduce.framework.name</name>
      <value>yarn</value>
      <description>The runtime framework for executing MapReduce jobs.
      Can be one of local, classic or yarn.
      </description>
    </property>
    
    <!-- jobhistory properties -->
    <property>
      <name>mapreduce.jobhistory.address</name>
      <value>SY-0131:10020</value>
      <description>MapReduce JobHistory Server IPC host:port</description>
    </property>
    
    <property>
      <name>mapreduce.jobhistory.webapp.address</name>
      <value>SY-0131:19888</value>
      <description>MapReduce JobHistory Server Web UI host:port</description>
    </property>
    
    </configuration>

    #修改:yarn-site.xml

    <?xml version="1.0"?>
    <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
    
    <!--
       Licensed to the Apache Software Foundation (ASF) under one or more
       contributor license agreements.  See the NOTICE file distributed with
       this work for additional information regarding copyright ownership.
       The ASF licenses this file to You under the Apache License, Version 2.0
       (the "License"); you may not use this file except in compliance with
       the License.  You may obtain a copy of the License at
    
           http://www.apache.org/licenses/LICENSE-2.0
    
       Unless required by applicable law or agreed to in writing, software
       distributed under the License is distributed on an "AS IS" BASIS,
       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
       See the License for the specific language governing permissions and
       limitations under the License.
    -->
    
    <!-- Do not modify this file directly.  Instead, copy entries that you -->
    <!-- wish to modify from this file into yarn-site.xml and change them -->
    <!-- there.  If yarn-site.xml does not already exist, create it.      -->
    
    <configuration>
      
      <!-- Resource Manager Configs -->
      <property>
        <description>The hostname of the RM.</description>
        <name>yarn.resourcemanager.hostname</name>
        <value>SY-0130</value>
      </property>    
      
      <property>
        <description>The address of the applications manager interface in the RM.</description>
        <name>yarn.resourcemanager.address</name>
        <value>${yarn.resourcemanager.hostname}:8032</value>
      </property>
    
      <property>
        <description>The address of the scheduler interface.</description>
        <name>yarn.resourcemanager.scheduler.address</name>
        <value>${yarn.resourcemanager.hostname}:8030</value>
      </property>
    
      <property>
        <description>The http address of the RM web application.</description>
        <name>yarn.resourcemanager.webapp.address</name>
        <value>${yarn.resourcemanager.hostname}:8088</value>
      </property>
    
      <property>
        <description>The https adddress of the RM web application.</description>
        <name>yarn.resourcemanager.webapp.https.address</name>
        <value>${yarn.resourcemanager.hostname}:8090</value>
      </property>
    
      <property>
        <name>yarn.resourcemanager.resource-tracker.address</name>
        <value>${yarn.resourcemanager.hostname}:8031</value>
      </property>
    
      <property>
        <description>The address of the RM admin interface.</description>
        <name>yarn.resourcemanager.admin.address</name>
        <value>${yarn.resourcemanager.hostname}:8033</value>
      </property>
    
      <property>
        <description>The class to use as the resource scheduler.</description>
        <name>yarn.resourcemanager.scheduler.class</name>
        <value>org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.FairScheduler</value>
      </property>
    
      <property>
        <description>fair-scheduler conf location</description>
        <name>yarn.scheduler.fair.allocation.file</name>
        <value>${yarn.home.dir}/etc/hadoop/fairscheduler.xml</value>
      </property>
      <property>
        <description>List of directories to store localized files in. An 
          application's localized file directory will be found in:
          ${yarn.nodemanager.local-dirs}/usercache/${user}/appcache/application_${appid}.
          Individual containers' work directories, called container_${contid}, will
          be subdirectories of this.
       </description>
        <name>yarn.nodemanager.local-dirs</name>
        <value>/home/hadoop/labc/yarn/local</value>
      </property>
    
      <property>
        <description>Whether to enable log aggregation</description>
        <name>yarn.log-aggregation-enable</name>
        <value>true</value>
      </property>
    
      <property>
        <description>Where to aggregate logs to.</description>
        <name>yarn.nodemanager.remote-app-log-dir</name>
        <value>/tmp/logs</value>
      </property>
    
      <property>
        <description>Amount of physical memory, in MB, that can be allocated 
        for containers.</description>
        <name>yarn.nodemanager.resource.memory-mb</name>
        <value>30720</value>
      </property>
    
      <property>
        <description>Number of CPU cores that can be allocated 
        for containers.</description>
        <name>yarn.nodemanager.resource.cpu-vcores</name>
        <value>12</value>
      </property>
    
      <property>
        <description>the valid service name should only contain a-zA-Z0-9_ and can not start with numbers</description>
        <name>yarn.nodemanager.aux-services</name>
        <value>mapreduce_shuffle</value>
      </property>
      
    </configuration>

     

    #修改slaves

    SY-0131
    SY-0132
    SY-0133

    #在/home/hadoop/labc/hadoop-2.6.0/etc/hadoop下,增加fairscheduler.xml

    <?xml version="1.0"?>
    <allocations>
    
      <queue name="infrastructure">
        <minResources>102400 mb, 50 vcores </minResources>
        <maxResources>153600 mb, 100 vcores </maxResources>
        <maxRunningApps>200</maxRunningApps>
        <minSharePreemptionTimeout>300</minSharePreemptionTimeout>
        <weight>1.0</weight>
        <aclSubmitApps>root,yarn,search,hdfs</aclSubmitApps>
      </queue>
    
       <queue name="tool">
          <minResources>102400 mb, 30 vcores</minResources>
          <maxResources>153600 mb, 50 vcores</maxResources>
       </queue>
    
       <queue name="sentiment">
          <minResources>102400 mb, 30 vcores</minResources>
          <maxResources>153600 mb, 50 vcores</maxResources>
       </queue>
    
    </allocations>

    将etc/hadoop/目录中的这几个配置文件通过scp 命令远程拷贝到SY-0131,SY-0132,SY-0133节点对应目录。

    3、Hadoop 启动(HDFS , YARN启动)

    注意:所有操作均在Hadoop部署目录下进行。
    
    启动Hadoop集群:
    Step1 :
    在各个JournalNode节点上,输入以下命令启动journalnode服务:
    sbin/hadoop-daemon.sh start journalnode
    
    Step2:
    在[nn1]上,对其进行格式化,并启动:
    bin/hdfs namenode -format
    sbin/hadoop-daemon.sh start namenode
    
    Step3:
    在[nn2]上,同步nn1的元数据信息:
    bin/hdfs namenode -bootstrapStandby
    
    Step4:
    启动[nn2]:
    sbin/hadoop-daemon.sh start namenode
    
    经过以上四步操作,nn1和nn2均处理standby状态
    Step5:
    将[nn1]切换为Active
    bin/hdfs haadmin -transitionToActive nn1
    
    Step6:
    在[nn1]上,启动所有datanode
    sbin/hadoop-daemons.sh start datanode
    
    关闭Hadoop集群:
    在[nn1]上,输入以下命令
    sbin/stop-dfs.sh

     

    web地址访问:

    activenamenode

     

    standbynamenode

     

    datanodes info

    4G内存,任性一次,开始Hadoop之旅!

    PS:

    一、Hdfs命令的区别:

    1、如果Apache hadoop版本是0.x 或者1.x,

      bin/hadoop hdfs fs -mkdir -p /in

      bin/hadoop hdfs fs  -put /home/du/input  /in

     

    2、如果Apache hadoop版本是2.x.

      bin/hdfs  dfs  -mkdir -p /in

      bin/hdfs  dfs   -put /home/du/input   /in

    二、 有时候DataNode启动不了有如下原因:

    1、因重复格式化namenode时候,集群ID会更改,原先已有数据的datanode中记录的集群ID与NameNode不一致,该问题会导致datanode启动不了。

    在第一次格式化dfs后,启动并使用了hadoop,后来又重新执行了格式化命令(hdfs namenode -format),这时namenode的clusterID会重新生成,而datanode的clusterID 保持不变。

    #对比clusterID :

    namenode

    [hadoop@SY-0131 current]$ pwd
    
    /home/hadoop/labc/hdfs/name/current
    
    [hadoop@SY-0131 current]$ cat VERSION
    
    #Tue Jan 06 23:39:38 PST 2015
    
    namespaceID=313333531
    
    clusterID=CID-c402aa07-4128-4cad-9d65-75afc5241fe1
    
    cTime=0
    
    storageType=NAME_NODE
    
    blockpoolID=BP-1463638609-192.168.249.130-1420523102441
    
    layoutVersion=-60

     

    datanode

    [hadoop@SY-0132 current]$ pwd
    
    /home/hadoop/labc/hdfs/data/current
    
     
    
    [hadoop@SY-0132 current]$ cat VERSION
    
    #Tue Jan 06 23:41:36 PST 2015
    
    storageID=DS-9475efc9-f890-4890-99e2-fdedaf1540c5
    
    clusterID=CID-c402aa07-4128-4cad-9d65-75afc5241fe1
    
    cTime=0
    
    datanodeUuid=d3f6a297-9b79-4e17-9e67-631732f94698
    
    storageType=DATA_NODE
    
    layoutVersion=-56

     2、data目录的权限不够

    本博客文章除特别声明,全部都是原创!

    可以转载, 但必须以超链接形式标明文章原始出处和作者信息及版权声明。

    尊重原创,转载请注明: 转载自JackyKen (http://www.cnblogs.com/xiejin)

    本文链接地址:《Hadoop2.6集群环境搭建(HDFS HA+YARN)原来4G内存也能任性一次》 (http://www.cnblogs.com/xiejin/p/4208741.html)

  • 相关阅读:
    web.py的input获取问题
    python unicode和 utf8字符串比较
    python default encoding
    linux flash player的问题
    centos 支持 ntfs格式
    学习jqueryjquery中的show()和hide()
    字符串等长分割
    类加载器分类
    类加载器子系统
    70道HR的面试题
  • 原文地址:https://www.cnblogs.com/tmeily/p/4208741.html
Copyright © 2011-2022 走看看