Sqoop
Sqoop is an open source tool that is used to import and export data between different relational databases and Hadoop ecosystems. As you know, the stable version of Sqoop is 1.4.7 and we will be using this version in our scenario. It is managed under the umbrella of Apache Projects. Let's start with the installation of Sqoop.
Installation
The installation of Sqoop is pretty straightforward. First, download the Sqoop application by executing the following command:
$ cd ~/ $ wget http://www.apache.org/dist/sqoop/1.4.7/sqoop-1.4.7.bin__hadoop-2.6.0.tar.gz
The following screenshot illustrates the output of these commands:

Download the Sqoop application
Now, execute the following command to extract the tar
archive:
$ tar -zxvf sqoop-1.4.7.bin__hadoop-2.6.0.tar.gz
This will create a folder called sqoop-1.4.7.bin__hadoop-2.6.0
and extract all the files to it. It's now time to do the related configuration. Execute the following command to edit the bashrc
file in order to include the Sqoop installation...