

{"id":8049,"date":"2018-02-14T08:51:37","date_gmt":"2018-02-14T08:51:37","guid":{"rendered":"https:\/\/data-flair.training\/blogs\/?p=8049"},"modified":"2021-12-07T12:01:59","modified_gmt":"2021-12-07T06:31:59","slug":"sqoop-installation","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/sqoop-installation\/","title":{"rendered":"Sqoop Installation &#8211; Steps to Install Sqoop 1.4.5 on Linux"},"content":{"rendered":"<p><span style=\"font-weight: 400\">In this Sqoop Tutorial, we study &#8220;Sqoop Installation&#8221; explains all the steps to install Sqoop on Linux. Since we know\u00a0<\/span><span style=\"font-weight: 400\"><a href=\"https:\/\/data-flair.training\/blogs\/sqoop-introduction\/\"><strong>Sqoop<\/strong><\/a> is <a href=\"https:\/\/data-flair.training\/blogs\/hadoop-tutorial\/\"><strong>Hadoop<\/strong><\/a>\u2019s sub-project. Thus, it can only work on a Linux operating system. Hence, at first, we will see the installation of some prerequisites to run Sqoop 1.4.5 Installation. <\/span><\/p>\n<p><span style=\"font-weight: 400\">So, for that, we will start with steps to verify Java Installation. At last, we will see <a href=\"https:\/\/data-flair.training\/blogs\/install-and-configure-hadoop-2-7-x-on-ubuntu\/\"><strong>steps to install Hadoop<\/strong><\/a>. Then we will learn the steps for Sqoop Installation on your Linux system.<\/span><\/p>\n<p>So, let&#8217;s start Sqoop installation.<\/p>\n<div id=\"attachment_8177\" style=\"width: 1210px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/02\/Sqoop-Installation-01-1.jpg\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-8177\" class=\"wp-image-8177 size-full\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/02\/Sqoop-Installation-01-1.jpg\" alt=\"Sqoop Tutorial - Sqoop Installation\" width=\"1200\" height=\"628\" srcset=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/02\/Sqoop-Installation-01-1.jpg 1200w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/02\/Sqoop-Installation-01-1-150x79.jpg 150w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/02\/Sqoop-Installation-01-1-300x157.jpg 300w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/02\/Sqoop-Installation-01-1-768x402.jpg 768w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/02\/Sqoop-Installation-01-1-1024x536.jpg 1024w\" sizes=\"auto, (max-width: 1200px) 100vw, 1200px\" \/><\/a><p id=\"caption-attachment-8177\" class=\"wp-caption-text\">Sqoop Tutorial &#8211; Sqoop Installation<\/p><\/div>\n<h3>Java Installation<\/h3>\n<p><span style=\"font-weight: 400\">Before Sqoop installation &#8211; version 1.4.5 on Linux, at very first we need to have <a href=\"https:\/\/data-flair.training\/blogs\/java-tutorial\/\"><strong>Java<\/strong><\/a> installed on our system. <\/span><br \/>\n<span style=\"font-weight: 400\">In order to <a href=\"https:\/\/data-flair.training\/blogs\/install-java-8-on-ubuntu\/\"><strong>install Java<\/strong><\/a> on our system, we need to follow various steps given below.<\/span><br \/>\n<b>Step 1<\/b><br \/>\n<span style=\"font-weight: 400\">By visiting the following link, <strong><a href=\"http:\/\/www.oracle.com\/technetwork\/java\/javase\/downloads\/index.html\">download Java<\/a><\/strong> (JDK &lt;latest version&gt; &#8211; X64.tar.gz).<\/span><br \/>\n<span style=\"font-weight: 400\">Hence, \u00a0jdk-7u71-linux-x64.tar.gz will be downloaded on our system.<\/span><br \/>\n<b>Step 2<\/b><br \/>\n<span style=\"font-weight: 400\">Basically, we find the downloaded Java file in the downloads folder. So, by using the following commands verify it and extract the jdk-7u71-linux-x64.gz file.<\/span><br \/>\n$ cd Downloads\/<br \/>\n$ ls<br \/>\njdk-7u71-linux-x64.gz<br \/>\n$ tar zxf jdk-7u71-linux-x64.gz<br \/>\n$ ls<br \/>\njdk1.7.0_71 jdk-7u71-linux-x64.gz<br \/>\n<b>Step 3<\/b><br \/>\n<span style=\"font-weight: 400\">Then, we have to move it to the location \u201c\/usr\/local\/\u201d, to make Java available to all the users. So, open root, and type the following commands.<\/span><br \/>\n$ su<br \/>\npassword:<br \/>\n# mv jdk1.7.0_71 \/usr\/local\/java<br \/>\n# exitStep IV:<br \/>\n<b>Step 4<\/b><br \/>\n<span style=\"font-weight: 400\">Afterward, add the following commands to ~\/.bashrc file in order to set up PATH and JAVA_HOME variables.<\/span><br \/>\nexport JAVA_HOME=\/usr\/local\/java<br \/>\nexport PATH=$PATH:$JAVA_HOME\/bin<br \/>\nNow apply all the changes to the current running system.<br \/>\n$ source ~\/.bashrc<br \/>\n<b>Step 5<\/b><br \/>\n<span style=\"font-weight: 400\">Now to configure Java alternatives use the following commands\u00a0<\/span><br \/>\n# alternatives &#8211;install \/usr\/bin\/java java usr\/local\/java\/bin\/java 2<br \/>\n# alternatives &#8211;install \/usr\/bin\/javac javac usr\/local\/java\/bin\/javac 2<br \/>\n# alternatives &#8211;install \/usr\/bin\/jar jar usr\/local\/java\/bin\/jar 2<br \/>\n# alternatives &#8211;set java usr\/local\/java\/bin\/java<br \/>\n# alternatives &#8211;set javac usr\/local\/java\/bin\/javac<br \/>\n# alternatives &#8211;set jar usr\/local\/java\/bin\/jar<br \/>\nSo, by using the following command, let\u2019s verify Java installation.<br \/>\n$ java \u2013version<br \/>\nHowever, we get to see the following response, if Java is already installed on your system<br \/>\njava version &#8220;1.7.0_71&#8221;<br \/>\nJava(TM) SE Runtime Environment (build 1.7.0_71-b13)<br \/>\nJava HotSpot(TM) Client VM (build 25.0-b02, mixed mode)<\/p>\n<h3>Hadoop Installation<\/h3>\n<p><span style=\"font-weight: 400\">It is very important that before Sqoop installation, Hadoop is installed on our system.<\/span> Follow these steps if Hadoop is not installed on your system:<br \/>\n<strong>a. Download Hadoop<\/strong><br \/>\n<span style=\"font-weight: 400\">By using the following commands, download and extract Hadoop 2.4.1 from Apache Software Foundation.<\/span><br \/>\n$ su<br \/>\npassword:<br \/>\n# cd \/usr\/local<br \/>\n# wget http:\/\/apache.claz.org\/hadoop\/common\/hadoop-2.4.1\/<br \/>\nhadoop-2.4.1.tar.gz<br \/>\n# tar xzf hadoop-2.4.1.tar.gz<br \/>\n# mv hadoop-2.4.1\/* to hadoop\/<br \/>\n# exit<br \/>\nSo, let\u2019s verify the Hadoop installation by using following commands<br \/>\n$ hadoop version<br \/>\nWe will get the following response if <a href=\"https:\/\/data-flair.training\/blogs\/install-hadoop-1-x-on-multi-node-cluster\/\"><strong>Hadoop<\/strong><\/a> is already installed on your system<br \/>\nHadoop 2.4.1<br \/>\n&#8212;<br \/>\nSubversion https:\/\/svn.apache.org\/repos\/asf\/hadoop\/common -r 1529768<br \/>\nCompiled by hortonmu on 2013-10-07T06:28Z<br \/>\nCompiled with protoc 2.5.0<br \/>\nFrom source with checksum 79e53ce7994d1628b240f09af91e1af4<br \/>\nHence, in this way, we can download Hadoop.<\/p>\n<h3>Sqoop Download &#8211; Sqoop Installation<\/h3>\n<p><span style=\"font-weight: 400\">Basically, we can download the latest version of Sqoop from here<strong>:\u00a0<\/strong><\/span><strong><a href=\"http:\/\/archive.apache.org\/dist\/sqoop\/1.4.5\/\">Download sqoop<\/a><\/strong><br \/>\n<span style=\"font-weight: 400\"> For this Sqoop Installation tutorial, we are using version 1.4.5, that is, <\/span><br \/>\nsqoop-1.4.5.bin__hadoop-2.0.4-alpha.tar.gz.<\/p>\n<h3><span style=\"font-weight: 400\">Step 1- Sqoop Installation<\/span><\/h3>\n<p><span style=\"font-weight: 400\">However, to extract the Sqoop tarball and move it to \u201c\/usr\/lib\/sqoop\u201d directory we use the following command.<\/span><br \/>\n$tar -xvf sqoop-1.4.4.bin__hadoop-2.0.4-alpha.tar.gz<br \/>\n$ su<br \/>\npassword:<br \/>\n# mv sqoop-1.4.4.bin__hadoop-2.0.4-alpha \/usr\/lib\/sqoop<br \/>\n#exit<\/p>\n<h3><span style=\"font-weight: 400\">Step 2- Configuring bashrc<\/span><\/h3>\n<p><span style=\"font-weight: 400\">Also, by appending the following lines to ~\/.bashrc file we have to set up the <a href=\"https:\/\/data-flair.training\/blogs\/sqoop-architecture-and-working\/\"><strong>Sqoop environment\u00a0<\/strong><\/a><\/span><br \/>\n#Sqoop<br \/>\nexport SQOOP_HOME=\/usr\/lib\/sqoop export PATH=$PATH:$SQOOP_HOME\/bin<br \/>\n<span style=\"font-weight: 400\">Now, to execute ~\/.bashrc file we use the following command.<\/span><br \/>\n$ source ~\/.bashrc<\/p>\n<h3><span style=\"font-weight: 400\">Step 3: Configuring Sqoop<\/span><\/h3>\n<p><span style=\"font-weight: 400\">While, we need to edit the sqoop-env.sh file, that is placed in the $SQOOP_HOME\/conf directory, in order to configure <a href=\"https:\/\/data-flair.training\/blogs\/features-of-sqoop\/\"><strong>Sqoop<\/strong><\/a> with <a href=\"https:\/\/data-flair.training\/blogs\/hadoop-features-and-design-principles\/\"><strong>Hadoop<\/strong><\/a>. Now, using the following command redirect to Sqoop config directory and copy the template file\u00a0<\/span><br \/>\n$ cd $SQOOP_HOME\/conf<br \/>\n$ mv sqoop-env-template.sh sqoop-env.sh<br \/>\n<span style=\"font-weight: 400\">Also, open sqoop-env.sh and edit the following lines\u00a0<\/span><br \/>\nexport HADOOP_COMMON_HOME=\/usr\/local\/hadoop<br \/>\nexport HADOOP_MAPRED_HOME=\/usr\/local\/hadoop<\/p>\n<h3><span style=\"font-weight: 400\">Step 4: Download and Configure MySQL-connector-java<\/span><\/h3>\n<p><span style=\"font-weight: 400\"> From the following link, we can <strong><a href=\"https:\/\/downloads.mysql.com\/archives\/c-j\/\">download <\/a><\/strong>MySQL-connector-java-5.1.30.tar.gz file.<\/span><br \/>\n<span style=\"font-weight: 400\">In adddition, to extract MySQL-connector-java tarball and move MySQL-connector-java-5.1.30-bin.jar to \/usr\/lib\/sqoop\/lib directory we use the following command.<\/span><br \/>\n$ tar -zxf mysql-connector-java-5.1.30.tar.gz<br \/>\n$ su<br \/>\npassword:<br \/>\n# cd mysql-connector-java-5.1.30<br \/>\n# mv mysql-connector-java-5.1.30-bin.jar \/usr\/lib\/sqoop\/lib<\/p>\n<h3><span style=\"font-weight: 400\">Step 5: Verifying Sqoop<\/span><\/h3>\n<p><span style=\"font-weight: 400\">At last, to verify the Sqoop version we use the following command.<\/span><br \/>\n$ cd $SQOOP_HOME\/bin<br \/>\n$ sqoop-version<br \/>\nExpected output<br \/>\n14\/12\/17 14:52:32 INFO sqoop.Sqoop: Running Sqoop version: 1.4.5<br \/>\nSqoop 1.4.5 git commit id 5b34accaca7de251fc91161733f906af2eddbe83<br \/>\nCompiled by abe on Fri Aug 1 11:19:26 PDT 2014<br \/>\n<span style=\"font-weight: 400\">Hence, in this way Sqoop installation is complete.<\/span><\/p>\n<h3>Conclusion<\/h3>\n<p>Hence, in this Sqoop installation tutorial, we study how Sqoop download &amp; install Sqoop by verifying Java Installation. At last, how to Download Hadoop and Verifying Hadoop Installation.\u00a0Furthermore, if you feel any query regarding Sqoop installation, feel free to ask in the comment section.<\/p>\n<p>See Also- <a href=\"https:\/\/data-flair.training\/blogs\/sqoop-eval\/\"><strong>Sqoop Eval<\/strong><\/a> &amp; <a href=\"https:\/\/data-flair.training\/blogs\/sqoop-codegen\/\"><strong>Sqoop Codegen<\/strong><\/a><br \/>\n<a href=\"http:\/\/sqoop.apache.org\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>For reference<\/strong><\/a><span hidden class=\"__iawmlf-post-loop-links\" data-iawmlf-links=\"[{&quot;id&quot;:1991,&quot;href&quot;:&quot;http:\\\/\\\/www.oracle.com\\\/technetwork\\\/java\\\/javase\\\/downloads\\\/index.html&quot;,&quot;archived_href&quot;:&quot;http:\\\/\\\/web-wp.archive.org\\\/web\\\/20200212100943\\\/https:\\\/\\\/www.oracle.com\\\/technetwork\\\/java\\\/javase\\\/downloads\\\/index.html&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2025-12-10 15:41:46&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2025-12-18 17:15:55&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2025-12-31 07:28:52&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-01-05 18:33:19&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-01-22 08:34:23&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-02-18 07:04:47&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-02-24 19:43:38&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-01 16:49:24&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-09 19:32:30&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-17 06:10:56&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-27 23:04:26&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-01 05:27:33&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-05 11:04:15&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-24 02:12:12&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-27 08:47:55&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-05-06 01:30:21&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-06-02 14:02:50&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-06-06 14:29:35&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-06-18 08:02:16&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-06-27 22:50:24&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-07-01 07:33:08&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-07-09 21:39:23&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-07-15 01:23:38&quot;,&quot;http_code&quot;:200}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-07-15 01:23:38&quot;,&quot;http_code&quot;:200},&quot;process&quot;:&quot;done&quot;},{&quot;id&quot;:2032,&quot;href&quot;:&quot;http:\\\/\\\/archive.apache.org\\\/dist\\\/sqoop\\\/1.4.5&quot;,&quot;archived_href&quot;:&quot;http:\\\/\\\/web-wp.archive.org\\\/web\\\/20240717190345\\\/https:\\\/\\\/archive.apache.org\\\/dist\\\/sqoop\\\/1.4.5\\\/&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2025-12-10 22:26:41&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2025-12-19 04:06:36&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2025-12-31 07:28:54&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-01-05 18:33:22&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-01-22 08:34:26&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-02-26 07:39:02&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-03-11 02:03:13&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-07 13:04:32&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-04-27 08:48:11&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-06-06 14:36:46&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-06-27 22:50:25&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-07-01 07:33:03&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-07-09 21:39:20&quot;,&quot;http_code&quot;:200},{&quot;date&quot;:&quot;2026-07-15 01:23:38&quot;,&quot;http_code&quot;:200}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-07-15 01:23:38&quot;,&quot;http_code&quot;:200},&quot;process&quot;:&quot;done&quot;},{&quot;id&quot;:2028,&quot;href&quot;:&quot;http:\\\/\\\/sqoop.apache.org&quot;,&quot;archived_href&quot;:&quot;http:\\\/\\\/web-wp.archive.org\\\/web\\\/20250925155903\\\/https:\\\/\\\/sqoop.apache.org\\\/&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2025-12-10 22:16:24&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-13 23:03:34&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-17 06:30:42&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-20 10:18:24&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-24 02:01:17&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-27 19:00:12&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-30 19:52:56&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-02 23:02:08&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-06 11:12:12&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-11 07:39:38&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-14 14:00:02&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-19 20:14:32&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-23 07:39:12&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-26 22:35:53&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-02 09:53:53&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-09 06:23:03&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-12 18:07:52&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-16 05:01:07&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-20 15:46:49&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-23 20:42:32&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-02 19:22:48&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-06 04:01:50&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-10 04:30:56&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-16 11:20:34&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-20 07:53:03&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-23 12:38:35&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-31 03:58:55&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-03 07:44:35&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-06 10:04:08&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-09 14:27:25&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-14 16:47:23&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-21 15:59:43&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-26 17:43:51&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-30 00:21:38&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-04 07:58:56&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-07 14:39:59&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-12 19:37:57&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-17 18:39:42&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-21 10:10:02&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-26 11:21:43&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-01 06:33:57&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-05 02:07:45&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-10 06:22:15&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-14 04:14:00&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-18 03:31:28&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-21 19:29:51&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-25 17:04:32&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-29 06:32:15&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-02 14:31:23&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-06 12:01:37&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-09 21:39:27&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-13 05:53:35&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-16 16:20:34&quot;,&quot;http_code&quot;:206}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-07-16 16:20:34&quot;,&quot;http_code&quot;:206},&quot;process&quot;:&quot;done&quot;}]\"><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this Sqoop Tutorial, we study &#8220;Sqoop Installation&#8221; explains all the steps to install Sqoop on Linux. Since we know\u00a0Sqoop is Hadoop\u2019s sub-project. Thus, it can only work on a Linux operating system. Hence,&#46;&#46;&#46;<\/p>\n","protected":false},"author":9,"featured_media":8177,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[68],"tags":[4047,4048,5243,6773,6799,13597,13598,13615,13691,15362,15363],"class_list":["post-8049","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-sqoop","tag-download-sqoop-for-ubuntu","tag-download-sqoop-for-windows","tag-hadoop-download","tag-install-java","tag-install-sqoop","tag-sqoop-1-4-6-installation","tag-sqoop-1-99-7-installation","tag-sqoop-download","tag-sqoop-installation","tag-verify-java-installation","tag-verifying-hadoop-installation"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Sqoop Installation - Steps to Install Sqoop 1.4.5 on Linux - DataFlair<\/title>\n<meta name=\"description\" content=\"Sqoop Installation- Java Installation, Install Java, Download Hadoop, Hadoop Installation and configuration, Steps to download sqoop and install sqoop 1.4.5\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/data-flair.training\/blogs\/sqoop-installation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Sqoop Installation - Steps to Install Sqoop 1.4.5 on Linux - DataFlair\" \/>\n<meta property=\"og:description\" content=\"Sqoop Installation- Java Installation, Install Java, Download Hadoop, Hadoop Installation and configuration, Steps to download sqoop and install sqoop 1.4.5\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/sqoop-installation\/\" \/>\n<meta property=\"og:site_name\" content=\"DataFlair\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DataFlairWS\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-02-14T08:51:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-12-07T06:31:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/02\/Sqoop-Installation-01-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"DataFlair Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:site\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DataFlair Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Sqoop Installation - Steps to Install Sqoop 1.4.5 on Linux - DataFlair","description":"Sqoop Installation- Java Installation, Install Java, Download Hadoop, Hadoop Installation and configuration, Steps to download sqoop and install sqoop 1.4.5","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/data-flair.training\/blogs\/sqoop-installation\/","og_locale":"en_US","og_type":"article","og_title":"Sqoop Installation - Steps to Install Sqoop 1.4.5 on Linux - DataFlair","og_description":"Sqoop Installation- Java Installation, Install Java, Download Hadoop, Hadoop Installation and configuration, Steps to download sqoop and install sqoop 1.4.5","og_url":"https:\/\/data-flair.training\/blogs\/sqoop-installation\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2018-02-14T08:51:37+00:00","article_modified_time":"2021-12-07T06:31:59+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/02\/Sqoop-Installation-01-1.jpg","type":"image\/jpeg"}],"author":"DataFlair Team","twitter_card":"summary_large_image","twitter_creator":"@DataFlairWS","twitter_site":"@DataFlairWS","twitter_misc":{"Written by":"DataFlair Team","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/sqoop-installation\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/sqoop-installation\/"},"author":{"name":"DataFlair Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/6e11a88eea98179e861a0933f8959f8f"},"headline":"Sqoop Installation &#8211; Steps to Install Sqoop 1.4.5 on Linux","datePublished":"2018-02-14T08:51:37+00:00","dateModified":"2021-12-07T06:31:59+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/sqoop-installation\/"},"wordCount":919,"commentCount":0,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/sqoop-installation\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/02\/Sqoop-Installation-01-1.jpg","keywords":["download sqoop for ubuntu","download sqoop for windows","Hadoop download","Install Java","Install Sqoop","sqoop 1.4.6 installation","sqoop 1.99.7 installation","Sqoop Download","Sqoop-Installation","Verify Java Installation","Verifying Hadoop Installation"],"articleSection":["Sqoop Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/sqoop-installation\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/sqoop-installation\/","url":"https:\/\/data-flair.training\/blogs\/sqoop-installation\/","name":"Sqoop Installation - Steps to Install Sqoop 1.4.5 on Linux - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/sqoop-installation\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/sqoop-installation\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/02\/Sqoop-Installation-01-1.jpg","datePublished":"2018-02-14T08:51:37+00:00","dateModified":"2021-12-07T06:31:59+00:00","description":"Sqoop Installation- Java Installation, Install Java, Download Hadoop, Hadoop Installation and configuration, Steps to download sqoop and install sqoop 1.4.5","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/sqoop-installation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/sqoop-installation\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/sqoop-installation\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/02\/Sqoop-Installation-01-1.jpg","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/02\/Sqoop-Installation-01-1.jpg","width":1200,"height":628,"caption":"Sqoop Tutorial - Sqoop Installation"},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/sqoop-installation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"Sqoop Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/sqoop\/"},{"@type":"ListItem","position":3,"name":"Sqoop Installation &#8211; Steps to Install Sqoop 1.4.5 on Linux"}]},{"@type":"WebSite","@id":"https:\/\/data-flair.training\/blogs\/#website","url":"https:\/\/data-flair.training\/blogs\/","name":"DataFlair","description":"Learn Today. Lead Tomorrow.","publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/data-flair.training\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/data-flair.training\/blogs\/#organization","name":"DataFlair","url":"https:\/\/data-flair.training\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","width":106,"height":48,"caption":"DataFlair"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DataFlairWS\/","https:\/\/x.com\/DataFlairWS","https:\/\/www.linkedin.com\/company\/dataflair-web-services-pvt-ltd\/","https:\/\/www.youtube.com\/user\/DataFlairWS"]},{"@type":"Person","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/6e11a88eea98179e861a0933f8959f8f","name":"DataFlair Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/54363d8635c383dcd7e3be0ef00dbeef4217c45bf323d27bc2c92366b724df08?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/54363d8635c383dcd7e3be0ef00dbeef4217c45bf323d27bc2c92366b724df08?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/54363d8635c383dcd7e3be0ef00dbeef4217c45bf323d27bc2c92366b724df08?s=96&d=mm&r=g","caption":"DataFlair Team"},"description":"At DataFlair, our team of experts is committed to offering high-quality tutorials on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. We simplify learning to help you advance your career in the tech world.","url":"https:\/\/data-flair.training\/blogs\/author\/dfteam5\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/8049","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=8049"}],"version-history":[{"count":6,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/8049\/revisions"}],"predecessor-version":[{"id":105286,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/8049\/revisions\/105286"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/8177"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=8049"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=8049"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=8049"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}