+
+这里出现的两个`Warning`警告是因为我们本身就没有用到`HCatalog`,`Accumulo`等软件,忽略即可。默认会去检查在环境变量中是否有配置以上软件,这些都是在`bin/configure-sqoop`文件中配置的,如果想去除这些警告,注释掉不必要的检查即可。
+
+```shell
+# Check: If we can't find our dependencies, give up here.
+if [ ! -d "${HADOOP_COMMON_HOME}" ]; then
+ echo "Error: $HADOOP_COMMON_HOME does not exist!"
+ echo 'Please set $HADOOP_COMMON_HOME to the root of your Hadoop installation.'
+ exit 1
+fi
+if [ ! -d "${HADOOP_MAPRED_HOME}" ]; then
+ echo "Error: $HADOOP_MAPRED_HOME does not exist!"
+ echo 'Please set $HADOOP_MAPRED_HOME to the root of your Hadoop MapReduce installation.'
+ exit 1
+fi
+
+## Moved to be a runtime check in sqoop.
+if [ ! -d "${HBASE_HOME}" ]; then
+ echo "Warning: $HBASE_HOME does not exist! HBase imports will fail."
+ echo 'Please set $HBASE_HOME to the root of your HBase installation.'
+fi
+
+## Moved to be a runtime check in sqoop.
+if [ ! -d "${HCAT_HOME}" ]; then
+ echo "Warning: $HCAT_HOME does not exist! HCatalog jobs will fail."
+ echo 'Please set $HCAT_HOME to the root of your HCatalog installation.'
+fi
+
+if [ ! -d "${ACCUMULO_HOME}" ]; then
+ echo "Warning: $ACCUMULO_HOME does not exist! Accumulo imports will fail."
+ echo 'Please set $ACCUMULO_HOME to the root of your Accumulo installation.'
+fi
+if [ ! -d "${ZOOKEEPER_HOME}" ]; then
+ echo "Warning: $ZOOKEEPER_HOME does not exist! Accumulo imports will fail."
+ echo 'Please set $ZOOKEEPER_HOME to the root of your Zookeeper installation.'
+fi
+```
+
diff --git a/pictures/sqoop-mysql-connect.png b/pictures/sqoop-mysql-connect.png
new file mode 100644
index 0000000..86ffd00
Binary files /dev/null and b/pictures/sqoop-mysql-connect.png differ
diff --git a/pictures/sqoop-mysql-jar.png b/pictures/sqoop-mysql-jar.png
new file mode 100644
index 0000000..25ab79d
Binary files /dev/null and b/pictures/sqoop-mysql-jar.png differ
diff --git a/pictures/sqoop-tool.png b/pictures/sqoop-tool.png
new file mode 100644
index 0000000..32c189e
Binary files /dev/null and b/pictures/sqoop-tool.png differ
diff --git a/pictures/sqoop-version-selected.png b/pictures/sqoop-version-selected.png
new file mode 100644
index 0000000..56ae7af
Binary files /dev/null and b/pictures/sqoop-version-selected.png differ
diff --git a/pictures/sqoop-version.png b/pictures/sqoop-version.png
new file mode 100644
index 0000000..217cb69
Binary files /dev/null and b/pictures/sqoop-version.png differ