Issues with Starting Pentaho Community Edition server -


i'm trying install pentaho community edition 7.0 ba server on centos 6.8 , getting following error.

http status 404 - /pentaho

type status report

message /pentaho

description requested resource not available. apache tomcat/8.0.37

the file downloaded , unzipped pentaho-server-ce-7.0.0.0-25.zip

i've checked ports (8080, , 9092) , open , listening. tried change tcp port 9093, still not work.

i thoguht worked out of box i'm having trouble.

any idea i'm doing wrong here?

the same thing happened me when installing on ubuntu 16.04.

it turned out java version being used. since running several versions of pdi alongside each other, have both java 7 , 8 installed , picking 7.

the proper solution configure pentaho_java_home environment variable point java 8 installation, example "/usr/lib/jvm/java-8-oracle". couldn't without breaking older applications.

what ended doing hacking start-pentaho.sh, commenting out lines involving setpentahoenv , instead putting hardcoded values:

_pentaho_java_home=/usr/lib/jvm/java-8-oracle _pentaho_java=/usr/lib/jvm/java-8-oracle/jre/bin/java

fill in own java paths , don't forget starting underscores.


Comments

Popular posts from this blog

How to understand 2 main() functions after using uftrace to profile the C++ program? -

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -