我正在尝试安装apache kylin 1.5.4.1,我正在关注以下URL:

http://kylin.apache.org/docs15/install/index.html

在启动服务器时,我会像这样,

$kylin.sh start

KYLIN_HOME is set to /usr/local/kylin
cat: /usr/local/kyli: No such file or directory
cat: /conf/kylin.properties: No such file or directory
-mkdir: Not enough arguments: expected 1 but got 0
Usage: hadoop fs [generic options] -mkdir [-p] <path> ...
failed to create , Please make sure the user has right to access

如果有人使用Apache Kylin,请告诉我先决条件,如何安装以及如何启动kylin服务器。请指导我。

最佳答案

确保已在环境变量上设置了hadoop安装路径

> export HADOOP_HOME=/home/user/hadoop-2.7.2
> export HIVE_HOME=/home/user/hive-2.0.0
> export HBASE_HOME=/home/user/hbase-1.2.4
> export KYLIN_HOME=/home/user/kylin-1.5.4.1

> export PATH=$JAVA_HOME/bin:$HADOOP_HOME/sbin:$HADOOP_HOME/bin:$HIVE_HOME/bin:$HBASE_HOME/bin:$KYLIN_HOME/bin$PATH

关于hadoop - 如何启动Apache Kylin?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40103250/

10-10 22:30