编译TPC-DS时证书引起报错
问题现象描述
编译TPC-DS时,出现以下报错。
curl failed to verify the legitimacy of the server and therefore could not establish a secure connection to it.
关键过程、根本原因分析
这是证书引起的问题。需要修改在curl命令后,前加入-k,忽略证书检查。
结论、解决方案及效果
- 修改“/opt/hive-testbench-hdp3/tpcds-gen/Makefile”文件。
vim /opt/hive-testbench-hdp3/tpcds-gen/Makefile
- 按“i”进入编辑模式,在curl后面加上-k,修改之后如下图。
- 按“Esc”键,输入:wq!,按“Enter”保存并退出编辑。
父主题: 故障排除