0

我正在尝试安装 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 服务器。请指导我。

4

1 回答 1

1

确保您的 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
于 2017-09-11T05:17:54.983 回答