Pentaho BIServer Community Edtion 7.1 软件安装

Pentaho BIServer Community Edtion 7.1  软件安装

环境准备:

操作系统:CentOS7.5 64位

Pentaho版本:社会版7.1

JDK版本:1.8 64位  jdk1.8.0_131

数据库:采用内置默认的数据库

一、简介:

Pentaho BI Server 分为企业版和社区版两个版本。其中 社区版 CE(community edtion) 为免费版本。 

二、下载Pentaho  CE版(CentOS7.5):

Pentaho Bi平台包含了服务端和web管理控制台。
存放在https://sourceforge.net/projects/pentaho/files/ 的Business Intelligence Server栏目下
下载的包名格式为:
pentaho-server-ce-x.1.0.0-x.zip
pentaho-server-manual-ce-x.1.0.0-x.zip
pentaho-server内置了Pentaho BI服务器及管理控制台,带有manual的是自定义安装Pentaho BI平台,资深用户可能会使用到这一组件。

下载地址:
https://sourceforge.net/projects/pentaho/files/Business%20Intelligence%20Server/

选择相应的版本点击下载。

三、安装

unzip pentaho-server-ce-7.1.0.0-12.zip  /tdata/tools/,自动生成 pentaho-server 文件夹

四、在Centos中安装JDK

 详细请参考:https://blog.csdn.net/u010735147/article/details/81773150

五、启动

Tomcat 默认端口号:8080

HSQLDB默认端口号:9001

安装路径为: 先把解压后pentaho-server文件夹CP到/tdata/

进入pentaho-server 文件夹,执行./start-pentaho.sh (此方法执行后,也是可以在后台执行)

[root@tslave pentaho-server]# ./start-pentaho.sh
DEBUG: Using JAVA_HOME
DEBUG: _PENTAHO_JAVA_HOME=/usr/java/jdk1.8.0_181
DEBUG: _PENTAHO_JAVA=/usr/java/jdk1.8.0_181/bin/java
--------------------------------------------------------------------------------------------
The Pentaho BI Platform now contains a version checker that will notify you
when newer versions of the software are available. The version checker is enabled by default.
For information on what the version checker does, why it is beneficial, and how it works see:
http://wiki.pentaho.com/display/ServerDoc2x/Version+Checker
Press Enter to continue, or type cancel or Ctrl-C to prevent the server from starting.
You will only be prompted once with this question.
--------------------------------------------------------------------------------------------
[OK]:--显示此OK时需要回车

Using CATALINA_BASE:   /tData/pentaho-server/tomcat
Using CATALINA_HOME:   /tData/pentaho-server/tomcat
Using CATALINA_TMPDIR: /tData/pentaho-server/tomcat/temp
Using JRE_HOME:        /usr/java/jdk1.8.0_181/jre
Using CLASSPATH:       /tData/pentaho-server/tomcat/bin/bootstrap.jar:/tData/pentaho-server/tomcat/bin/tomcat-juli.jar
Tomcat started.
[root@tslave pentaho-server]# ps -ef|grep pentaho --查看进程是否启动成功
root      9949     1 99 10:40 pts/0    00:00:37 /usr/java/jdk1.8.0_181/jre/bin/java -Djava.util.logging.config.file=/tData/pentaho-server/tomcat/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djdk.tls.ephemeralDHKeySize=2048 -Djava.protocol.handler.pkgs=org.apache.catalina.webresources -Xms2048m -Xmx6144m -XX:MaxPermSize=256m -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dfile.encoding=utf8 -DDI_HOME=/tData/pentaho-server/pentaho-solutions/system/kettle -Djava.endorsed.dirs=/tData/pentaho-server/tomcat/endorsed -classpath /tData/pentaho-server/tomcat/bin/bootstrap.jar:/tData/pentaho-server/tomcat/bin/tomcat-juli.jar -Dcatalina.base=/tData/pentaho-server/tomcat -Dcatalina.home=/tDatapentaho-server/tomcat -Djava.io.tmpdir=/tData/pentaho-server/tomcat/temp org.apache.catalina.startup.Bootstrap start
root     10173  9437  0 10:41 pts/0    00:00:00 grep --color=auto pentaho
root     32478  9437  0 10:16 pts/0    00:00:00 /bin/sh ./start-pentaho.sh
root     32483 32478  0 10:16 pts/0    00:00:00 sh /tData/pentaho-server/promptuser.sh
root     32748 32555  0 10:17 pts/1    00:00:00 tail -1000f start-pentaho.log
[root@tslave pentaho-server]# netstat -an|grep 8080  --查看Pentaho8080端口是否正常监听
tcp6       0      0 :::8080                 :::*                    LISTEN    

另外一种启动方法,在后台启动服务

./start-pentaho.sh & >> 1.log &   后台启动服务

六、首页

http://IP:8080/pentaho

默认用户名密码:admin/password

资料参考:https://www.cnblogs.com/driftingshine/p/6065081.html

猜你喜欢

转载自blog.csdn.net/u010735147/article/details/81746454