Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

We are using Pentaho biserver-ce-3.6.0-stable on Ubuntu Linux.

1.- Run tomcat server in another port: file server.xml

We have to change all the port numbers that begin with 8 for something else, in this case sevens, that way the public port will end up in 7080, it's not enough to change just the 8080 connection port, the next sed command can do it.

Code Block

sed -i  's/ort="8/ort="7/g '  biserver-ce/tomcat/conf/server.xml
Change base URL: file web.xml

Use your editor an modify web.xml, example with vi:

vi ./biserver-ce/tomcat/webapps/pentaho/WEB-INF/web.xml

Code Block

<context-param>

...


<param-name>base-url</param-name>

...


<param-

...

value>http://www.company.cl/pentaho/</param-value>

...


</context-param>
Proxy Apache: file for virtual host www.company.cl

Clients can't go to any port, so we will use apache2 mod_proxy to accept requests on port 80 and redirect them to port 7080 already configured above.

Code Block

ProxyPass /pentaho-style/ http://www.company.cl:7080/pentaho-style/

...


ProxyPassReverse /pentaho-style/ http://www.company.cl:7080/pentaho-style/

...


ProxyPass /pentaho/ http://www.company.cl:7080/pentaho/

...


ProxyPassReverse /pentaho/ http://www.company.cl:7080/pentaho/