Sunday 18 November 2012

Pentaho: Configuring Enterprise Console


Console.xml (/home/sumeet/server/administration-console/resource/config)

<?xml version="1.0" encoding="UTF-8"?>
<console>
  <solution-path>/home/sumeet/server/biserver-ce/pentaho-solutions</solution-path>
  <war-path>/home/sumeet/server/biserver-ce/tomcat/webapps/pentaho</war-path>
  <platform-username>joe</platform-username> 
  <biserver-status-check-period-millis>30000</biserver-status-check-period-millis> 
  <homepage-url>http://www.pentaho.com/console_home</homepage-url> 
  <homepage-timeout-millis>15000</homepage-timeout-millis> 
  <!-- comma separated list of roles (no spaces) --> 
  <default-roles>Authenticated</default-roles>
  <default-server-dir>biserver-ce</default-server-dir>
</console>
Web.xml(/home/sumeet/server/biserver-ce/tomcat/pentaho/webapps/web-inf)

<context-param>
                                <param-name>fully-qualified-server-url</param-name>
                                <param-value>http://ctg-BI.srv.citagus.com:8080/pentaho/</param-value>
</context-param>
.
.
.
<init-param>
                                <param-name>TrustedIpAddrs</param-name>
                                <param-value>127.0.0.1,192.168.0.240</param-value>
                                <description>Comma separated list of IP addresses of a trusted hosts.</description>
</init-param>
Hosts(/etc ) or (D:\WINDOWS\system32\drivers\etc\)

# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1                              localhost.localdomain localhost
192.168.0.240 ctg-BI.srv.citagus.com
::1                           localhost6.localdomain6 localhost6


No comments:

Post a Comment