我的scoop从带有CentOS的VM导出到Windows上的mysql失败了
java.io.IOException:无法运行程序" mysqlimport":error = 2,没有这样的文件或目录。
我的sqoop导出命令是
sqoop export --verbose --connect jdbc:mysql://192.168.168.1/test --username root --password root123 --table marksheet --direct --export-dir / user / hive / warehouse / marksheet --input-fields-terminated-by' \ 001'
我从mysql(windows)导入到centOS是成功的。
sqoop import --verbose --fields-terminated-by',' --connect jdbc:mysql://192.168.168.1/test --username root --password root123 --table student --hive-import --create-hive-table --hive-home / home / training / hive - -warehouse-dir / user / hive / warehouse --fields-terminated-by',' --hive-table studentmysql
我已经在互联网上查了一下,没有得到太多帮助。任何帮助请...
答案 0 :(得分:1)
我自己从错误中得到了解决方案......
我必须使用yum install mysql在我的VM中安装mysql。
然后出口工作......