I am trying to install hadoop in a multinode cluster environment. I have installed ubuntu 15.10 on an SSD. I want to install hadoop 2.6.2 on the SSD and keep my HDFS on a separate SATA hard drive. For this, what steps should I follow?
I have installed hadoop in SSD with the following configurations in hdfs-site.xml. Hence I have set the property dfs.datanode.data.dir as file:///media/coea23/HDFS/hdfs/datanode. But the datanode is not showing while executing jps whereas the namenode is showing which is in the SSD where the hadoop installation has been done.
<property>
<name>dfs.datanode.data.dir</name>
<value>file:///media/coea23/HDFS/hdfs/datanode</value>
<description>DataNode directory</description>
</property>
<property>
<name>dfs.namenode.name.dir</name>
<value>file:///home/hduser/hdfs/namenode</value>
<description>NameNode directory for namespace and transaction logs storage.</description>
</property>
Please give your valuable suggestion. Thanks in advance.
Kamaruddin