ERROR tool.ExportTool: Encountered IOException running export job: java.io.IOException: No columns t

利用sqoop数据从Hive复制到MySQL出现的问题

19/12/22 11:03:37 INFO tool.CodeGenTool: Beginning code generation
Sun Dec 22 11:03:38 CST 2019 WARN: Establishing SSL connection without server’s identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn’t set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to ‘false’. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
19/12/22 11:03:38 ERROR manager.SqlManager: Error executing statement: java.sql.SQLException: Access denied for user ‘root’@‘localhost’ (using password: YES)
java.sql.SQLException: Access denied for user ‘root’@‘localhost’ (using password: YES)


ERROR tool.ExportTool: Encountered IOException running export job: java.io.IOException: No columns to generate for ClassWriter

当我们输入以下命令完全正确的时候,却出现了以上问题,对此我以为是sqoop与MySQL没有连接成功,于是进行了测试连接。
ERROR tool.ExportTool: Encountered IOException running export job: java.io.IOException: No columns t_第1张图片

我输入以下命令进行测试:
在这里插入图片描述

这里的命令没有输入password
在这里插入图片描述

看到了吧,我这里的命令并没有打上password,显示让我输入密码,我输入,测试成功!
ERROR tool.ExportTool: Encountered IOException running export job: java.io.IOException: No columns t_第2张图片

想了想,好不我就干脆跟这个命令一样,不输入password,于是就有了以下命令:

./bin/sqoop export --connect jdbc:mysql://localhost:3306/dblab --username root -P --table user_action --export-dir '/user/hive/warehouse/dblab.db/user_action' --fields-terminated-by '\t';

跟测试sqoop连接MySQL一样输入密码。
哦吼,运行成功啦
ERROR tool.ExportTool: Encountered IOException running export job: java.io.IOException: No columns t_第3张图片

以上案例问题源于《大数据基础编程、实验和案例教程》,随着时间的推移,很多东西发生改变,所以该书存在一些小问题也是有的,对此小编针对一些问题进行讲解。

你可能感兴趣的:(linux问题)