cloudra安装hadoop集群
http://archive-primary.cloudera.com/cdh5/parcels/5.3.2/ http://www.cnblogs.com/oftenlin/p/4217670.html http://www.jianshu.com/p/57179e03795f 准备工作 以下步骤要在所有节点上执行 1.1修改hostname vi /etc/sysconfig/network 1.2关闭SELinux 查看SELinux状态getenforce 若SELinux没有关闭,按照下述方式关闭 vi /etc/selinux/config 修改SELinux=disabled。重启生效,可以等后面都设置完了重启主机 1.3关闭防火墙 sudo service iptables stop sudo chkconfig iptables off sudo chkconfig iptables --list 1.4网络配置 vim /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE="eth0" BOOTPROTO="static" IPADDR=192.168.1.110 NM_CONTROLLED="yes" ONBOOT="yes" TYPE="Ethernet" DNS1=8.8.8.8 DNS2=8.8.4.4