1. 1、  安装jdk1.6.0_26(安装java环境)   
  2.  
  3. Scp  /etc/profile  (注释)newnodeip:/etc  
  4.  
  5. 2、  安装hadoop及hbase、zookeeper  
  6.  
  7. Yum install hadoop-0.20   
  8.  
  9. Yum install hadoop-0.20-tasktarek  
  10.  
  11. Yum install hadoop-0.20-namenode  
  12.  
  13. Yum install hadoop-0.20-datanode  
  14.  
  15. Yum install hadoop-hbase   
  16.  
  17. 3|、从主节点拷贝配置文件到新加节点  
  18.  
  19. Scp  –r  /etc/hadoop-0.20/conf   newnodeip:/etc/hadoop-0.20  
  20.  
  21. Scp  –r  /etc/hbase/conf   newnodeip:/etc/hbase  
  22.  
  23. Scp  –r  /etc/zookeeper/conf   newnodeip:/etc/zookeeper  
  24.  
  25. 3、  设置用户最大打开的文件数量:  
  26.  
  27. Vim   /etc/security/limits.conf  
  28.  
  29. hdfs            -       nofile  32768  
  30.  
  31. hbase           -       nofile  32768  
  32.  
  33. 4、  在master主机上添加dns解析  
  34.  
  35. Vim /var/named/hdfs.zone  
  36.  
  37. $TTL    86400  
  38.  
  39. @ IN SOA hdfs. root(  
  40.  
  41.         200101111  
  42.  
  43.         14400  
  44.  
  45.         3600  
  46.  
  47.         604800  
  48.  
  49.         86400)   
  50.  
  51. master-hadoop IN A 192.168.5.249  
  52.  
  53. slave1-hadoop IN A 192.168.5.201  
  54.  
  55. hostname  IN A  newip(注释)  
  56.  
  57. master-hbase IN A 192.168.5.249  
  58.  
  59. slave1-hbase IN A 192.168.5.201  
  60.  
  61. hostname  IN A  newip(注释)  
  62.  
  63. @ IN NS ns.hdfs.  
  64.  
  65. /etc/rc.d/init.d/named restart  
  66.  
  67. 6,在本机设置dns  
  68.  
  69. vi /etc/resolv.conf  
  70.  
  71. earch hdfs  
  72.  
  73. domain hdfs  
  74.  
  75. nameserver 192.168.5.249  
  76.  
  77. nameserver 202.106.0.20  
  78.  
  79. ~  
  80.  
  81. 7、主节点master主机添加从节点配置:  
  82.  
  83. Vim /etc/hadoop-0.20/slaves  
  84.  
  85. slave1-hadoop.hdfs  
  86.  
  87. slave2-hadoop.hdfs  
  88.  
  89. slave4-hadoop.hdfs  
  90.  
  91. slave3-hadoop.hdfs  
  92.  
  93. hostname(注释)  
  94.  
  95. vim /etc/hbase/regionserver  
  96.  
  97. slave1-hadoop.hdfs  
  98.  
  99. slave2-hadoop.hdfs  
  100.  
  101. slave4-hadoop.hdfs  
  102.  
  103. slave3-hadoop.hdfs  
  104.  
  105. hostname(注释)  
  106.  
  107. 8、配置免密码验证  
  108.  
  109. Scp /home/hdfs/.ssh/*  newip:/home/hdfs/.ssh  
  110.  
  111. 9、启动新加节点:  
  112.  
  113. /usr/hahadoop-0.20/bin/daemon start datanode  
  114.  
  115. /usr/hahadoop-0.20/bin/daemon start tasktracker  
  116.