使用EHM图形化安装、配置、监控Hadoop集群(2)

备注:创建配置文件时,只写文件名称即可。不用写绝对路径,否则会报错

1、“配置管理”| Hadoop配置管理”

wps_clip_image-9847

2、“全局配置”| “添加全局配置”

wps_clip_image-8668

3、配置core-site.xml文件

wps_clip_image-1662

4、附core-site.xml文件内容

<?xml version="1.0"?>

<?xml-stylesheet type="text/xsl" href="https://www.linuxidc.com/configuration.xsl"?>

<!-- Put site-specific property overrides in this file. -->

<configuration>

<!-- global properties -->

<property>

<name>hadoop.tmp.dir</name>

<value>/usr/hadoop/tmp</value>

</property>

<!-- file system properties -->

<property>

<name>fs.default.name</name>

<value>hdfs://easy-master:9000</value>

</property>

 

</configuration>

 

5、创建hdfs-site.xml

wps_clip_image-19222

6、附hdfs-site.xml文件内容

<?xml version="1.0"?>

<?xml-stylesheet type="text/xsl" href="https://www.linuxidc.com/configuration.xsl"?>

<!-- Put site-specific property overrides in this file. -->

<configuration>

<property>

<name>dfs.replication</name>

<value>1</value>

</property>

 

</configuration>

 

备注:参数值表示集群中的数据的冗余次数,必须不小于datanode的节点个数。

7、创建mapred-site.xml文件

wps_clip_image-262

8、附mapred-site.xml文件内容

<?xml version="1.0"?>

<?xml-stylesheet type="text/xsl" href="https://www.linuxidc.com/configuration.xsl"?>

<!-- Put site-specific property overrides in this file. -->

<configuration>

<property>

<name>mapred.job.tracker</name>

<value>easy-master:9001</value>

</property>

 

</configuration>

 

9、“全局配置” | “推送通用配置”

使用EHM图形化安装、配置、监控Hadoop集群

10、“提交”

wps_clip_image-18679

11、推送配置文件完成 | “关闭”

使用EHM图形化安装、配置、监控Hadoop集群

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/610cdbf474cf472939753f38afe8142a.html