Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

“administration-console” is the name of administrator folder for users and roles.

How to set up Pentaho to run on different port (if Mifos is running on 8080)?

Mifos will run on your default Tomcat on port 8080. To run Mifos and Mifos BI simultaneously, you will need to change which port Pentaho runs on. To do so you must change the port to 8086 via the web.xml and server.xml files. These tips were compiled by Ramya in this mailing list discussion.

These steps assume the Mifos war is installed in your default tomcat which runs on port 8080 - http://localhost:8080/mifos

http://localhost:8080/mifos1) Navigate to following location:

Panel

D:\PENTAHO_REPORTS\biserver-ce-3.6.0-stable\biserver-ce\tomcat\webapps\pentaho\WEB-INF\web.xml

Edit the base-url section of your web.xml file. Change the port to 8086 from 8080

Code Block

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

                                <param-value>http://localhost:8086/pentaho/</param-value>
</context-param>

2) Navigate to:

Panel

 D:\PENTAHO_REPORTS\biserver-ce-3.6.0-stable\biserver-ce\tomcat\conf\server.xml

Edit the following two sections:

i) Change the shutdown port no to 8007 from 8005

Code Block

<Server port="8007" shutdown="SHUTDOWN">

ii) Change the port from 8080 to 8086

Code Block

<!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->

<Connector URIEncoding="UTF-8" port="8086" maxHttpHeaderSize="8192"

               maxThreads="150" minSpareThreads="25" maxSpareThreads="75"

              enableLookups="false" redirectPort="8443" acceptCount="100"

               connectionTimeout="20000" disableUploadTimeout="true" />

With these three changes, both applications should run simultaneously with Mifos BI at http://localhost:8086/pentaho

How to Start Pentaho Designer, Admin console and BI-server?

...

Code Block
<command>content/reporting/reportviewer/report.html?solution={solution}&amp;path={path}&amp;name={name}&amp;layout=flow</command> 

Change it to:

Code Block


<command>content/reporting/reportviewer/report.html?solution={solution}&amp;path={path}&amp;name={name}&amp;layout=flow;&amp;autoSubmit=false</command>

...