mac环境下kylin安装异常
Posted strongyoung88
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac环境下kylin安装异常相关的知识,希望对你有一定的参考价值。
find: -printf: unknown primary or operator Current HIVE_LIB is not valid, please export HIVE_LIB=‘YOUR_LOCAL_HIVE_LIB’
find: -printf: unknown primary or operator
Current HIVE_LIB is not valid, please export HIVE_LIB='YOUR_LOCAL_HIVE_LIB'
解决方法:
编辑bin/find-hive-dependency.sh
文件,大概201行
hive_lib=`find -L $hive_lib_dir -name '*.jar' ! -name '*druid*' ! -name '*slf4j*' ! -name '*avatica*' ! -name '*calcite*' ! -name '*jackson-datatype-joda*' ! -name '*derby*' -printf '%p:' | sed 's/:$//'`
改成:
hive_lib=`find -L $hive_lib_dir -name '*.jar' ! -name '*druid*' ! -name '*slf4j*' ! -name '*avatica*' ! -name '*calcite*' ! -name '*jackson-datatype-joda*' ! -name '*derby*' | awk 'printf "%s:", $1'|sed 's/:$//'`
find: -printf: unknown primary or operator spark jars not found
解决方法:
编辑文件bin/find-spark-dependency.sh
,大概43行,修改
spark_dependency=`find -L $spark_home/jars -name '*.jar' ! -name '*slf4j*' ! -name '*calcite*' ! -name '*doc*' ! -name '*test*' ! -name '*sources*' ''-printf '%p:' | sed 's/:$//'`
改成:
spark_dependency=`find -L $spark_home/jars -name '*.jar' ! -name '*slf4j*' ! -name '*calcite*' ! -name '*doc*' ! -name '*test*' ! -name '*sources*' | awk 'printf "%s:", $1'|sed 's/:$//'`
以上是关于mac环境下kylin安装异常的主要内容,如果未能解决你的问题,请参考以下文章
VMware12环境下Ubuntu kylin 14.04安装搜狗输入法
基于Ubuntu Kylin系统在Hadoop的环境下调用MapReduce进行单词WordCount计数
基于Ubuntu Kylin系统在Hadoop的环境下调用MapReduce进行单词WordCount计数
kylin_异常_01_java.io.FileNotFoundException: /developer/apache-kylin-2.3.0-bin/tomcat/conf/.keystore(示