{"id":4347,"date":"2020-08-13T17:28:43","date_gmt":"2020-08-13T11:58:43","guid":{"rendered":"https:\/\/www.h2kinfosys.com\/blog\/?p=4347"},"modified":"2020-12-14T14:54:51","modified_gmt":"2020-12-14T09:24:51","slug":"install-hadoop-with-step-by-step-configuration-on-ubuntu","status":"publish","type":"post","link":"https:\/\/www.h2kinfosys.com\/blog\/install-hadoop-with-step-by-step-configuration-on-ubuntu\/","title":{"rendered":"How to Install Hadoop with Step by Step Configuration on Ubuntu?"},"content":{"rendered":"\n<p>In this tutorial, we are going to install Hadoop Apache on a ubuntu system followed by the configuration of install Hadoop.<\/p>\n\n\n\n<p>Open the terminal in Ubuntu. Hit <strong>Ctrl<\/strong>&#8211;<strong>Shift<\/strong>&#8211;<strong>T<\/strong><\/p>\n\n\n\n<p><strong>Step 1) Add a new user.<\/strong><\/p>\n\n\n\n<p>To keep things clean we will create a new user with the name \u201chadoop\u201d.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo addgroup hadoop<\/code><\/pre>\n\n\n\n<p>You will be asked for a password. Enter the password and press enter.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/R6ZaCdoDo0-0Bhn3-v2bx0islwPhlQwXHuDY7sP_JtZwOLCmBVOIGSTjOBZ7-UQt0NgqUoA72CIB1Nb6XNW9UNscgLrki3g4X-hJvYpm5BMce1hdxOgFc6TpSdBuzjEVD3D-WK7pPAvaBcP71A\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p>Then execute the following command to create user.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo adduser --ingroup hadoop supper_user<\/code><\/pre>\n\n\n\n<p>Then enter the information.<\/p>\n\n\n\n<p><strong>Note: Remember the password which you entered.<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/LZTwgs4dsKPYU4w9DC5aZEuXZHtLoUUV8HGdMh6v2uVWygN_3S-ypWhZgxxugEmeKiqXHq01gq50Ygma0z5zAAgyvFtKF8QEIyOaoelZ1vZ3qTSHgJq1jqKbrk18W-kyrdjFoXtd2Clqqra6kA\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p><strong>Step 2) Now Configure SSH<\/strong><\/p>\n\n\n\n<p>If the SSH is not installed in your system enter the given below command in the terminal.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get install openssh-server<\/code><\/pre>\n\n\n\n<p>Now add the supper_user to the sudo group.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo adduser supper_user sudo<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/y2Ffem2TBiX2_ZcpBFBpfxuLjYAUiNtFp3WuOkZKiLGJVDXQKrkCqRqRMwY91TNnT9k7HmujL4LWJ0_Q_Quk6mMDEv8WfMcDazBciqexDS9Dgj__Tmp9m6Z5ZbmjuEUWoRtiGq5Mu2N5iU5F_w\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p>First, convert to the supper_user that you created above using the command given below.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>su supper_user<\/code><\/pre>\n\n\n\n<p>Enter the password which you set above while creating the user.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/NFX85_IPjh1ZZ_zT4kYXSylVM_ta28xJ4P1Xd1J6eZAR4UgacUKDlG5gdBsPAtX_wAr3QH-ckRDNXx5tgLF170V6JZ4zooWFaGQFvdv3heq-gdKU7_S2lp1JGSyPumCPkGgfGY2mfG2wVdgXqA\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p>Now for creating the authentication key pairs for <strong>SSH <\/strong>execute the command below.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ssh-keygen -t rsa -P \"\"<\/code><\/pre>\n\n\n\n<p>Remember to execute this command from supper_user that we created.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/IWy9lnOkdbHoaVKF62dhfwffZXIKiDCEtPuAW2wvvkG39pJB1h2OMyKiog-lpSadga8cSgAVJ3DkM3OcvHIVK_x6tBtiwtcAk8RzKXmLd5JzWwf3AavoIOBdt6SP5TfIA8Xn8o72padzHEveFw\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p>Now activate the SSH access using the command given below.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cat $HOME\/.ssh\/id_rsa.pub >> $HOME\/.ssh\/authorized_keys<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/q_6QmY17MtwQs54MoUqtge7_Lain3fAfGuwOv3zCKG-Az7uPQPAbqT-iJeF2x7FE0BLoq8kPmlqzGfPJd2Pz-nCx7jo0qQAWCQjbtGe-yNLF2rAe7H6TLBffaoKvLxLlI6aa3lwzvoeCCTnP9g\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p>Let\u2019s now test our SSH using the following command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ssh localhost<\/code><\/pre>\n\n\n\n<p>If you see the below-given output. Congratulations you are on your way.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/n9IRa1PlKpDdRR8cZInfFYtma5Yh0p0iLp9mqY1GlSDPdivNkCiwmQE_8xkxHbcZPtlDCFh--kN2YjvytDlxYlXah8QKiCrmIfLTcmbz8xQfZC3lF9SOkHEfaXFmWGRWl26FoHzmmMrZ7mAdbQ\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p><strong>Step 3) Download the Hadoop from the given website<\/strong><\/p>\n\n\n\n<p><a href=\"https:\/\/www.apache.org\/dyn\/closer.cgi\/hadoop\/common\/hadoop-3.3.0\/hadoop-3.3.0.tar.gz\" rel=\"nofollow noopener\" target=\"_blank\"><strong>&nbsp;<\/strong><strong>Download Hadoop<\/strong><\/a><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/7zlyr1aYTVCxCmhljsDqo4goPi_Y43U6whk6vfMZGRY3lQsL7N-ehhu_7AK2dzwiG4cLm_n4Ys0v2-XVplOp6cz4aGiG6um6BSTlp8gJGE0B_gqQOTYw7yw1UZ28sEbwDOidbpTZeKMznZGxgg\" alt=\"Download the Hadoop \" title=\"\"><\/figure>\n\n\n\n<p>I downloaded the <a href=\"https:\/\/www.h2kinfosys.com\/blog\/is-hadoop-certification-training-the-key-for-bagging-high-paying-jobs\/\">Hadoop <\/a>in the download folder. Now move to download folder using the command given below.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/home\/ahmed\/Downloads\/<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/PmCqXdQ-Svqy15d65aQOPYOf2JrUb8zHSslNDW3gRsCtBzeLvdfh0igl8TWJ8YSHXrUpreLVNOmAUFrqSSRgMf7Inw6OwtTeNc-dCUESwn2rao_65ieuDX303Nu4kUFHnVMeJadSkvzqOQ5-JQ\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo tar xzf hadoop-3.3.0.tar.gz<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/pztqeXuK6P53RlWVeAqSOK21AsWN4nWtMK5WMNyTzjXINfTJn2PEcyNtd7Z6ynnhnAbtL9qWzIC5um2hrDRzZOsIGZqj73hvDWiS8PEr7Tke3Cn8S8ChlcJ0VMCbYEldaIymEqqdbYXwGhPCmQ\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo chown -R supper_user:hadoop hadoop-3.3.0<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/KO3s18r3ktEgqluzyvLhlZmuP17v2hMsluj3iXg8aA7mM4lW_V3q8-D025zWBaqwH3NyFtMiG9yizuwzx_vfJvyDDaChWXVHsayykptOHhz2sN_tJxpXR2ZPUwVWMTu6iIMahYqJuEBNRfKnag\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p><strong>Step 4) Configuration of Hadoop<\/strong><\/p>\n\n\n\n<p>We are going to modify the following files.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>bashrc<\/li><li>hadoop-env.sh<\/li><li>core-site.xml<\/li><li>hdfs-site.xml<\/li><li>mapred-site-xml<\/li><li>Yarn-site.xml<\/li><\/ol>\n\n\n\n<p>File 1:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi .bashrc\nexport HADOOP_HOME=\/home\/hadoop\/hadoop\nexport HADOOP_INSTALL=$HADOOP_HOME\nexport HADOOP_MAPRED_HOME=$HADOOP_HOME\nexport HADOOP_COMMON_HOME=$HADOOP_HOME\nexport HADOOP_HDFS_HOME=$HADOOP_HOME\nexport YARN_HOME=$HADOOP_HOME\nexport HADOOP_COMMON_LIB_NATIVE_DIR=$HADOOP_HOME\/lib\/native\nexport PATH=$PATH:$HADOOP_HOME\/sbin:$HADOOP_HOME\/bin<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/KVi2LjYwZj5Z8AotcZRyjW9CKxRz4-lor4h-BEshwShfLdngaaGYZnaWaLal1DkFUEpLauYP_jBs1ieU49BOkQl52i6duWqHvC41tYvqc5BRx_nGdiCWSqY_KlMHjPxwTcXt5PyLm0pIjAb-qQ\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p>Once you added the above-given variable in the file, exit from the editor.<\/p>\n\n\n\n<p>Now apply changes using the given command below.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>source ~\/.bashrc<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/fSQoMfTbbU8vKRAbvz74VQvk_tTWD9-9JikDUkZ4dEFF0UGymtaTdzs1HrbJznwE2XozrjMG0XZ1gs83y8smS6YGolxzTDNiLMEZbA5uOxmstpQ-KLrQglRUaHoh5I8DtG4lsmWZg1UKLbvDiw\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p>File 2:<\/p>\n\n\n\n<p><strong><em>Edit hadoop-env.sh File using the command given below.<\/em><\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi \/home\/ahmed\/Downloads\/hadoop-3.3.0\/etc\/hadoop\/hadoop-env.sh<\/code><\/pre>\n\n\n\n<p>Uncomment the export statement add the path of Java.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>export JAVA_HOME=\/usr\/lib\/jvm\/java-8-openjdk-amd64<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/-FZ0pnO7YhaWe_t1KIqTdQM_i6Grx6jQcant56pJOaGXhOKRyxCxARa-MGDmTVcJTEBP7OQMsNoZoo0GgReTOOA3Y-nszHbkxv79tU5IxOku_Gp80y706IfYBdQbZDpZGT6e6SFK4ocN3ornow\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p>File 3:<\/p>\n\n\n\n<p><strong><em>Now lets edit core-site.xml file.<\/em><\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi $HADOOP_HOME\/etc\/hadoop\/core-site.xml<\/code><\/pre>\n\n\n\n<p>Add the below-given data in the core-site.xml<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;property>\n  &lt;name>hadoop.tmp.dir&lt;\/name>\n  &lt;value>\/home\/hdoop\/tmpdata&lt;\/value>\n&lt;\/property>\n&lt;property>\n  &lt;name>fs.default.name&lt;\/name>\n  &lt;value>hdfs:\/\/127.0.0.1:9000&lt;\/value>\n&lt;\/property><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/Is9FfiuC1X5PjPLi50Ih9X9ird5-_knCAiHEBbdIZDQt2DHTHyNVmYewE8ipv-ZOKiVP1loTC-rshJrOQZT6qeDrSwlg0vIOxwZI5b0UyXa4B8lpkeeYXh0sJ3S5XHwWfSkH8CLINoLefvC0Mw\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p>Now move to the given below directory<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd $HADOOP_HOME\/etc\/hadoop<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/wc05y_pxwCHizbtDzdLHTv4p9dOFYm6G9GIlSaqIMFh6Cl_ieHaUzHKHMs0rkq59cbla6UAVsi3y9fLiE8mxXClqUVeKEtNBrT6OIiYUXMp6lDNmf02btZ0E84UgINCu27AjPbyWggAA_BPgBg\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mkdir -p \/app\/hadoop\/tmp<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/hRLnvnN_hzQhKTc8NzuWZu7-TW7_0V8vp9afhTTGakywq1ddM7vPukVXZJqm18Tih_bOk6wBSsPVaAErWUqHYQMctFyfMTqskV2JBxT67hS4zOnYhvC6vc_K5_OjR9bDnI635oUrsNJIofbyIw\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo chown -R supper_user:hadoop \/app\/hadoop\/tmp<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/ix3GsbMr43Mh4MpCJSbitV8IRbC27eTXkubDJVMz-MQYG7ZBJrRICQ6a1gWfKwMzbcPffSUY7hJOOrTCfEr8A5DgaSYbDdOo7yufMPNdw1eM-mxasoxGSFYqvL8oO5dgxRCr2D5lqffL8l2dOQ\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo chmod 750 \/app\/hadoop\/tmp<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/ZFPdkMLwOi_965FCvBg-aE5iihp1pkigdHFJZ_eWcEXV-HQjtY1RU9uAn5xA5fd73h4EBE1Fw9xmmAnamP5z4S17n8M5uoNgFz_I8EhwbxQ6SZUdEBwK5ZYufujyGXfbN8bQeV_Lo4f8604xbg\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p>File 4:<\/p>\n\n\n\n<p>Now let\u2019s edit hdfs-site.xml File<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi $HADOOP_HOME\/etc\/hadoop\/hdfs-site.xml<\/code><\/pre>\n\n\n\n<p>Add the following lines in the configuration tag.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;configuration>\n&lt;property>\n&lt;name>dfs.replication&lt;\/name>\n&lt;value>1&lt;\/value>\n&lt;description>Default block replication.&lt;\/description>\n&lt;\/property>\n&lt;property>\n&lt;name>dfs.datanode.data.dir&lt;\/name>\n&lt;value>\/home\/supper_user\/hdfs&lt;\/value>\n&lt;\/property>\n&lt;\/configuration><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/bDehmt9FrCo8QbqcvG-OIAs6W4BkoT1OMy2ytuytbuyw-IuQy4ZAf5mALJJHnmcPwafcge87IKFD_BsnMC8FAT4CLHkVPAgTplKWyu7aL-pPVc4plDI7bruZidRcIvueyHO0CNQe-zpDsVFzWQ\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p>Save and exit.<\/p>\n\n\n\n<p>File 5:<\/p>\n\n\n\n<p>Now edit mapred-site.xml file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi $HADOOP_HOME\/etc\/hadoop\/mapred-site.xml<\/code><\/pre>\n\n\n\n<p>Add the following data in the mapred-site.xml file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;configuration>\n&lt;property>\n&lt;name>mapreduce.jobtracker.address&lt;\/name>\n&lt;value>localhost:54311&lt;\/value>\n&lt;description>MapReduce job tracker runs at this host and port.\n&lt;\/description>\n&lt;\/property>\n&lt;\/configuration><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/isO1tM9mC-WTyiFEMsUCBkaN-_I7ZXiLs3yCk0PZvkU8U6S2o9ggPqBwJ01SCdCgtPs05ASKMfsob7TfHU2hPNcomoJrh3CE0EnJTeEGi6Je402Q1u25M7_J8JhJIlKvK1Va1SLrRp6GS5yWaA\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>File 6:<\/strong><\/h3>\n\n\n\n<p>Now we are going to edit yarn-site.xml file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi $HADOOP_HOME\/etc\/hadoop\/yarn-site.xml<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;property>\n  &lt;name>yarn.nodemanager.aux-services&lt;\/name>\n  &lt;value>mapreduce_shuffle&lt;\/value>\n&lt;\/property>\n&lt;property>\n  &lt;name>yarn.nodemanager.aux-services.mapreduce.shuffle.class&lt;\/name>\n  &lt;value>org.apache.hadoop.mapred.ShuffleHandler&lt;\/value>\n&lt;\/property>\n&lt;property>\n  &lt;name>yarn.resourcemanager.hostname&lt;\/name>\n  &lt;value>127.0.0.1&lt;\/value>\n&lt;\/property>\n&lt;property>\n  &lt;name>yarn.acl.enable&lt;\/name>\n  &lt;value>0&lt;\/value>\n&lt;\/property>\n&lt;property>\n  &lt;name>yarn.nodemanager.env-whitelist&lt;\/name>   \n  &lt;value>JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,CLASSPATH_PERPEND_DISTCACHE,HADOOP_YARN_HOME,HADOOP_MAPRED_HOME&lt;\/value>\n&lt;\/property><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/tyXwhgkjaxzV3ViVEj5dXP7dum7upc3dFAkIayd1kH-zXbXrbXKe_RvAPTaQQiCqD2NuiNcxjmNTSEYLP0gmvoYDM_5qjCqdfDtJ4Psx-JTWYcttQpfhaZWUigrlEmAprMKER0CGhKVqkq1oLw\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p>Save and exit.<\/p>\n\n\n\n<p>Now let\u2019s format HDFS NameNode using the command below.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$HADOOP_HOME\/bin\/hdfs namenode -format<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/GctoHhFhLdR_rnwBewpPpUEH0NcAP5lEcz_6b1uQ7J5Du8En2YkBbzRi1tR8rVsA3nodOsm-7wqAHWHlsMnk9HnVpCg_XU7K6qZVg21K06Mj1uupTwOLMllW1OwJ0HPXgB7jMo3ehaJ7bIcSwQ\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>$HADOOP_HOME\/sbin\/start-yarn.sh<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/cPN9Kiqxbo_GFleZrEk7HMjyw2jOL58JoES6y8p5mWGo8Z7xpN4kCcayAQluJ8lQ1ELC2SV0jW7JF3clHpZDoAd9nYMm5XL-bn7N5_j1GdV3NZY9T1W6oc35Tx35IXXnduRL0R9QvqJ4V_6dbA\" alt=\"\" title=\"\"><\/figure>\n\n\n\n<p>Type \u201cjps\u201d to check the Hadoop processes are running.<img fetchpriority=\"high\" decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/Rf8hprCBxaZg_z1TgCV9fUpY8uP4jywQL5WmPGy01plMkq2NbNolAi5k1vNazEVghMtQaubho1NMAiFjZ-2Jb0f8UYddUZpq2KDM_IUxknmN4GuexD371iKv7VQ786vF7JjXKLXmr_fHgyqQAg\" width=\"624\" height=\"93\" alt=\"\" title=\"\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we are going to install Hadoop Apache on a ubuntu system followed by the configuration of install Hadoop. Open the terminal in Ubuntu. Hit Ctrl&#8211;Shift&#8211;T Step 1) Add a new user. To keep things clean we will create a new user with the name \u201chadoop\u201d. You will be asked for a password. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":4364,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[138],"tags":[1216,1215,1217],"class_list":["post-4347","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bigdata-hadoop-tutorials","tag-configuration-on-ubuntu","tag-how-to-install-hadoop","tag-step-by-step-configuration"],"_links":{"self":[{"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/posts\/4347","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/comments?post=4347"}],"version-history":[{"count":0,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/posts\/4347\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/media\/4364"}],"wp:attachment":[{"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/media?parent=4347"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/categories?post=4347"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.h2kinfosys.com\/blog\/wp-json\/wp\/v2\/tags?post=4347"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}