1.独立模式.单机模式(本地模式):standalone(local)
什么都不用配置,配置好hadoop环境就是默认的模式:单机,独立,本地模式
2.伪分布模式:Pseudodistributed mode
a)进入$/etc/hadoop目录
b)编辑core-site.xml
fs.defaultFS
hdfs://localhost/
c)编辑hdfs-site.xml
dfs.replication
1
d)编辑mapred-site.xml
注意:mapred-site.xml不存在,需要拷贝一份
注意:cp mapred-site.xml.template mapred-site.xml
mapreduce.framework.name
yarn
e)编辑yarn-site.xml
yarn.resourcemanager.hostname
localhost
yarn.nodemanager.aux-services
mapreduce_shuffle
f)配置SSH
1)检查是否安装了ssh相关软件包(openssh-server + openssh-clients + openssh)
$yum list installed | grep ssh
2)检查是否启动了sshd进程
$>ps -Af | grep sshd
3)在client侧生成公私秘钥对。
$>ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa
4)生成~/.ssh文件夹,里面有id_rsa(私钥) + id_rsa.pub(公钥)
5)追加公钥到~/.ssh/authorized_keys文件中(文件名、位置固定)
$>cd ~/.ssh
$>cat id_rsa.pub >> authorized_keys
6)修改authorized_keys的权限为644.
$>chmod 644 authorized_keys
7)测试
$>ssh localhost
领取专属 10元无门槛券
私享最新 技术干货