标签:
当我们使用linux ubuntu系统作为hadoop节点的os,需要对ubuntu os做些配置。ps.(以下只在ubuntu14.04 操作,其他版本可能有些不同)
安装使用工具:
sudo apt-get install vim sudo apt-get install git sudo apt-get install subversion ...
常用配置:
1、添加用户(nave)以及分组(hadoop)
##switch to root sudo -i ##添加一个分组名字为hadoop addgroup hadoop ##添加一个用户nave归属于hadoop分组 adduser -ingroup hadoop nave
2、给nave用户添加权限,打开/etc/sudoers文件:
sudo vim /etc/sudoers
按回车键后就会打开/etc/sudoers文件了,给hadoop用户赋予root用户同样的权限。
在root ALL=(ALL:ALL) ALL下添加 nave ALL=(ALL:ALL) ALL
1 root ALL=(ALL:ALL) ALL 2 nave ALL=(ALL:ALL) ALL
3、修改hostname
sudo vim /etc/hostname
ps.注销or重启后生效
4、修改hosts文件
sudo vim /etc/hosts
参考链接如下:
http://os.51cto.com/art/201211/364167.htm
标签:
原文地址:http://www.cnblogs.com/limelife/p/4246014.html