[root@gree128 ~]# cd /opt/soft/install/ [root@gree128 install]# ls Anaconda3-2020.07-Linux-x86_64.sh ? ? ? ? ?hive-1.1.0-cdh5.14.2.tar.gz apache-kylin-3.0.2-bin.tar.gz ? ? ? ? ? ? ?kafka_2.11-2.0.0.tgz
解压安装包 [root@gree128 install]# tar -zxvf apache-kylin-3.0.2-bin.tar.gz ?-C /opt/soft
重命名 [root@gree128 install]# cd /opt/soft [root@gree128 soft]# ls apache-kylin-3.0.2-bin ?flume160 ? install ? ?scala211 ? ?spark245 ? ? ? ? ? ? ? ? ? ? ? ?zookeeper345 azkaba ? ? ? ? ? ? ? ? ?font ? ? ? kafka211 ? shell ? ? ? sqoop146 ? ? ? ? ? ? ? ? ? ? ? ?zookeeper.out canal ? ? ? ? ? ? ? ? ? hadoop260 ?mongodb ? ?shell2 ? ? ?test1 dirtest ? ? ? ? ? ? ? ? hbase120 ? nohup.out ?shelldemo ? test_20211026-1.0-SNAPSHOT.jar flink ? ? ? ? ? ? ? ? ? hive110 ? ?out ? ? ? ?shelldemo2 ?zepplin090 [root@gree128 soft]# mv apache-kylin-3.0.2-bin/ kylin302
路径 [root@gree128 kylin302]# pwd /opt/soft/kylin302
修改文件 [root@gree128 kylin302]# cd ./bin/ [root@gree128 bin]# ls build-incremental-cube.sh ? download-spark.sh ? ? ? ? get-properties.sh ? ? ? ? ? metastore.sh check-env.sh ? ? ? ? ? ? ? ?find-hadoop-conf-dir.sh ? header.sh ? ? ? ? ? ? ? ? ? sample.sh check-hive-usability.sh ? ? find-hbase-dependency.sh ?health-check.sh ? ? ? ? ? ? sample-streaming.sh check-migration-acl.sh ? ? ?find-hive-dependency.sh ? kylin-port-replace-util.sh ?set-java-home.sh check-port-availability.sh ?find-kafka-dependency.sh ?kylin.sh ? ? ? ? ? ? ? ? ? ?system-cube.sh diag.sh ? ? ? ? ? ? ? ? ? ? find-spark-dependency.sh ?load-hive-conf.sh ? ? ? ? ? util.sh
[root@gree128 bin]# vi ./find-spark-dependency.sh ?43 spark_dependency=`find -L $spark_home/jars -name '*.jar' ! -name '*jackson*' ! -name '*metastore*' ! -name '*calcite*' ! -name '*doc*' ! -name '*test*' ! -name '*sources*' ''-printf ? ? ? ? '%p:' | sed 's/:$//'`
配置环境变量并且source一下 [root@gree128 bin]# vi /etc/profile
#Kylin export KYLIN_HOME=/opt/soft/kylin302 export PATH=$PATH:$KYLIN_HOME/bin
source一下 [root@gree128 bin]# source /etc/profile
? 启动kylin之前,先启动Hadoop(hdfs、yarn、jobhistoryserver)、Zookeeper、HBase [root@gree128 bin]# start-all.sh
[root@gree128 bin]# mr-jobhistory-daemon.sh start historyserver
[root@gree128 bin]# zkServer.sh start
[root@gree128 bin]# start-hbase.sh?
[root@gree128 bin]# jps 6432 HMaster 6896 Jps 4081 ResourceManager 4356 NodeManager 6229 QuorumPeerMain 6583 HRegionServer 3912 SecondaryNameNode 3502 NameNode 6126 JobHistoryServer 3631 DataNode
启动kylin [root@gree128 bin]# kylin.sh start A new Kylin instance is started by root. To stop it, run 'kylin.sh stop' Check the log at /opt/soft/kylin302/logs/kylin.log(麒麟日志) Web UI is at http://gree128:7070/kylin
登录kylin页面??http://gree128:7070/kylin 账号 ADMIN ? ?密码 ?KYLIN
关闭kylin [root@gree128 bin]# kylin.sh stop
|