February 13, 2014, 12:33 am
on pentaho 4.8 I used file extension .url as below :
[InternetShortcut]
URL=flexpivot/MpnFatturatoPerAnno.html
Modified=30E041B5D78BC5012E
[navigation]
Name=%url_name
Description=%url_description
clicking the icon in puc, penatho 4.8 opened properly the url
http://myserver:8080/pentaho/flexpivot/MpnFatturatoPerAnno.html
in pentaho 5 , it open the url
http://localhost:8080/pentaho/flexpivot/MpnFatturatoPerAnno.html
there is any way to make it work on pentaho 5.0 ?
thanks for any answer
↧
February 13, 2014, 2:14 am
Hi, I have some problems when installing biserver 5.0.1. I follow the normal install procedure to have pentaho working with the original hSQLdb. No probs and all functions are operating well.
After that, I proceed to change the configuration to operate with mysql ddbb, then astonishingly some options are not operating well or doesn't operate at all.
As a summary of what I did, I list below the configuration files and the updates that I did, following the different tutorials found in the web:
- applicationContext-spring-security-hibernate.properties
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/hibernate
jdbc.username=hibuser
jdbc.password=password
hibernate.dialect=org.hibernate.dialect.MySQLDialect
- hibernate-settings.xml
<config-file>system/hibernate/mysql5.hibernate.cfg.xml</config-file>
- mysql5.hibernate.cfg.xml
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://localhost:3306/hibernate</property>
<property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
<property name="connection.username">hibuser</property>
<property name="connection.password">password</property>
- quartz.properties
org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate
- context.xml
<Resource name="jdbc/Hibernate" auth="Container" type="javax.sql.DataSource"
factory="org.apache.commons.dbcp.BasicDataSourceFactory" maxActive="20" maxIdle="5"
maxWait="10000" username="hibuser" password="password"
driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/hibernate"
validationQuery="select 1" />
<Resource name="jdbc/Quartz" auth="Container" type="javax.sql.DataSource"
factory="org.apache.commons.dbcp.BasicDataSourceFactory" maxActive="20" maxIdle="5"
maxWait="10000" username="pentaho_user" password="password"
driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/quartz"
validationQuery="select 1"/>
- repository.xml
i) FileSystem part
Comment this code
<FileSystem>
<param name=”path” value=”${rep.home}/repository”/>
</FileSystem>
Active this code
<FileSystem>
<param name="driver" value="com.mysql.jdbc.Driver"/>
<param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/>
<param name="user" value="jcr_user"/>
<param name="password" value="password"/>
<param name="schema" value="mysql"/>
<param name="schemaObjectPrefix" value="fs_repos_"/>
</FileSystem>
ii) DataStore part
Comment this code
<DataStore/>
Active this code
<DataStore class="org.apache.jackrabbit.core.data.db.DbDataStore">
<param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/>
<param name="user" value="jcr_user"/>
<param name="password" value="password"/>
<param name="databaseType" value="mysql"/>
<param name="driver" value="com.mysql.jdbc.Driver"/>
<param name="minRecordLength" value="1024"/>
<param name="maxConnections" value="3"/>
<param name="copyWhenReading" value="true"/>
<param name="tablePrefix" value=""/>
<param name="schemaObjectPrefix" value="ds_repos_"/>
</DataStore>
iii) Security part in the FileSystem Workspace part
Comment this code
<FileSystem>
<param name=”path” value=”${wsp.home}”/>
</FileSystem>
Active this code
<FileSystem>
<param name="driver" value="com.mysql.jdbc.Driver"/>
<param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/>
<param name="user" value="jcr_user"/>
<param name="password" value="password"/>
<param name="schema" value="mysql"/>
<param name="schemaObjectPrefix" value="fs_ws_"/>
</FileSystem>
iv) PersistenceManager part
Comment this code
<PersistenceManager>
<param name=”url” value=”jdbc:h2:${wsp.home}/db”/>
<param name=”schemaObjectPrefix” value=”${wsp.name}_”/>
</PersistenceManager>
Active this code
<PersistenceManager>
<param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/>
<param name="user" value="jcr_user" />
<param name="password" value="password" />
<param name="schema" value="mysql"/>
<param name="schemaObjectPrefix" value="${wsp.name}_pm_ws_"/>
</PersistenceManager>
v) FileSystem Versioning part
Comment this code
<FileSystem>
<param name=”path” value=”${rep.home}/version” />
</FileSystem>
Active this code
<FileSystem>
<param name="driver" value="com.mysql.jdbc.Driver"/>
<param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/>
<param name="user" value="jcr_user"/>
<param name="password" value="password"/>
<param name="schema" value="mysql"/>
<param name="schemaObjectPrefix" value="fs_ver_"/>
</FileSystem>
vi) PersistenceManager Versioning part
Comment this code:
<PersistenceManager>
<param name=”url” value=”jdbc:h2:${rep.home}/version/db”/>
<param name=”schemaObjectPrefix” value=”version_”/>
</PersistenceManager>
Active this code:
<PersistenceManager>
<param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/>
<param name="user" value="jcr_user" />
<param name="password" value="password" />
<param name="schema" value="mysql"/>
<param name="schemaObjectPrefix" value="pm_ver_"/>
</PersistenceManager>
- web.xml
<!– [BEGIN HSQLDB DATABASES]
<context-param>
<param-name>hsqldb-databases</param-name>
<param-value>sampledata@../../data/hsqldb/sampledata,hibernate@../../data/hsqldb/hibernate,quartz@../../data/hsqldb/quartz</param-value>
</context-param>
[END HSQLDB DATABASES] –>
<!– [BEGIN HSQLDB STARTER]
<listener>
<listener-class>org.pentaho.platform.web.http.context.HsqldbStartupListener</listener-class>
</listener>
[END HSQLDB STARTER] –>
I created the databases correctly, with users and passwords, without any problem, everyting is operating well at this level.
The problem now, is that some options aren't operating as expected or as they did before. I can't upload reports with PRD to the BI server, when I try system returns this error:
"Unable to publish your file. Please try again or contact your system administrator for assistance"
And if i try to open any file or manage anything in the pentaho user console it doesn't respond.
I read the log files of the tomcat java application server, and they show some errors in the files pentaho.log and catalina.out
...
Does someone know what is the problem? why do I have this errors? I attached the log files.
Anyway, now I'm still working with pentaho and the original installed hSQLdb database for the platform and MySQL database for the data. I create the connections with mysql from the report data section and it's working perfectly, I can upload reports with PRD and all options and functions work as expected.
How could I make the system work with mysql as the main database for the BI platform administration and operation?
Many thanks in advance!
↧
↧
February 15, 2014, 6:19 am
Hi!
I'm desperate now....i had many troubles installling Pentaho CE 5.0.1, but finally can do it. The problem goes when I go to console.... there, Home does'n shows and work correctly (see attach)
2.jpg
When I press the buttons, like Create New....nothing works.
What is the problem??
I installed JRE7, so put the enviroment vriable to: JRE_HOME --> C:\Program Files\Java\jre7
Tried JAVA_HOME --> C:\Program Files\Java\jre7 with same result.
In Java folder, there's no other folder
3.jpg
Can you help me pleaseeee!!!
↧
February 17, 2014, 4:23 am
Hi,
I'm using Pentaho Bi Server CE 4.8.0. I need to move my user management to Microsoft Active Directory. I have used the documentations and changed all files accordingly. But for properties in "applicationContext-security-ldap.properties" I don't know how to set contextSource.userDn value. How should I use parameters in Active Directory structure?
Thanks,
↧
February 17, 2014, 6:16 am
Hi,
I have a ktr file which is called by an xaction using the Get data from pentaho data integration step, this ktr file reads an excel spreadsheet which contains 3 columns of data.
I want to be able to loop over the rows in the result set, can anybody advise how I can reference the individual columns in the result set while in the loop.
Thanks
Adrian
↧
↧
February 17, 2014, 10:14 pm
SAP BO Online Training by SunItLabs We are providing excellent SAP BO Training by real-time
IT industry experts Our training methodology is very unique Our Course Content covers all the in-
depth critical scenarios. We have completed more than 200 SAP BO batches through Online SAP BO
Training program, Our SAP BO Classes covers all the real time scenarios, and its completely on Hands-
on for each and every session.
Please call us for the Demo Classes we have regular batches and weekend batches.
Contact Number : India :+91 903-092-8000,
Email :
sunitlabs@gmail.com ,
Web:
http://sunitlabs.com/sap-bo-online-training/
↧
February 18, 2014, 4:45 am
Hi all, I have recently started using Pentaho and I seem to have run into quite a road block in the analyzer which I'm really hoping somebody could help with.
PENTAHO.png
All I want to do is, in essence, is to add another column that will do:
ACT+DEF+0.3*OPT+0.8*PEN
This, however, has not proved to be straightforward. Especially as it's complicated by the fact that all the columns fall under "status". So ACT, DEF, OPT, PEN are all sub-columns of the one column from my data called "Status".
So this is not as simple as defining the measure as [ACT]+[DEF]+... I have to somehow tell it to pull data from these columns, within "status".
Any help would be greatly appreciated as I've really hit a dead end here.
Many thanks
↧
February 18, 2014, 6:04 am
Hi,
I am updating and installing plug-ins from marketplace but getting error.
i am using Win 7 , Pentaho 5.0.1
The error in log looks like this
2014-02-18 19:29:31,052 ERROR [org.pentaho.marketplace.MarketplaceService]
Unable to load the job from XML file [D:\Softwares\pentaho-5\biserver-ce\pentaho-solutions\system/marketplace/processes/download_and_install_plugin.kjb]
Unable to load job info from XML node
There was an error while reading the shared objects (continuing load) : {0}
Unexpected problem reading shared objects from XML file : null
Unable to load database connection info from XML node
Unable to create new database interface
database type with plugin id [OpenERPDatabaseMeta] couldn't be found!
org.pentaho.di.core.exception.KettleXMLException:
Unable to load the job from XML file [D:\Softwares\pentaho-5\biserver-ce\pentaho-solutions\system/marketplace/processes/download_and_install_plugin.kjb]
Unable to load job info from XML node
There was an error while reading the shared objects (continuing load) : {0}
Unexpected problem reading shared objects from XML file : null
Unable to load database connection info from XML node
Unable to create new database interface
database type with plugin id [OpenERPDatabaseMeta] couldn't be found!
at org.pentaho.di.job.JobMeta.<init>(JobMeta.java:956)
at org.pentaho.di.job.JobMeta.<init>(JobMeta.java:925)
at org.pentaho.di.job.JobMeta.<init>(JobMeta.java:895)
at org.pentaho.marketplace.MarketplaceService.installPlugin(MarketplaceService.java:293)
at org.pentaho.marketplace.MarketplaceService.installPluginJson(MarketplaceService.java:356)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.sun.jersey.spi.container.JavaMethodInvokerFactory$1.invoke(JavaMethodInvokerFactory.java:60)
at com.sun.jersey.server.impl.model.method.dispatch.AbstractResourceMethodDispatchProvider$TypeOutInvoker._dispatch(AbstractResourceMethodDispatchProvider.java:185)
at com.sun.jersey.server.impl.model.method.dispatch.ResourceJavaMethodDispatcher.dispatch(ResourceJavaMethodDispatcher.java:75)
at com.sun.jersey.server.impl.uri.rules.HttpMethodRule.accept(HttpMethodRule.java:302)
at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
at com.sun.jersey.server.impl.uri.rules.ResourceClassRule.accept(ResourceClassRule.java:108)
at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
at com.sun.jersey.server.impl.uri.rules.RootResourceClassesRule.accept(RootResourceClassesRule.java:84)
at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1511)
at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1442)
at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1391)
at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1381)
at com.sun.jersey.spi.container.servlet.WebComponent.service(WebComponent.java:416)
at com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:538)
at com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:716)
at org.pentaho.platform.web.servlet.JAXRSPluginServlet.service(JAXRSPluginServlet.java:62)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.pentaho.platform.web.servlet.JAXRSPluginServlet.service(JAXRSPluginServlet.java:67)
at org.pentaho.platform.web.servlet.PluginDispatchServlet.service(PluginDispatchServlet.java:89)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.pentaho.platform.web.http.filters.PentahoWebContextFilter.doFilter(PentahoWebContextFilter.java:161)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.pentaho.platform.web.http.filters.PentahoRequestContextFilter.doFilter(PentahoRequestContextFilter.java:83)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:378)
at org.springframework.security.intercept.web.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:109)
at org.springframework.security.intercept.web.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83)
at org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:390)
at org.springframework.security.ui.ExceptionTranslationFilter.doFilterHttp(ExceptionTranslationFilter.java:101)
at org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
at org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:390)
at org.springframework.security.providers.anonymous.AnonymousProcessingFilter.doFilterHttp(AnonymousProcessingFilter.java:105)
at org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
at org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:390)
at org.springframework.security.ui.basicauth.BasicProcessingFilter.doFilterHttp(BasicProcessingFilter.java:174)
at org.pentaho.platform.web.http.security.PentahoBasicProcessingFilter.doFilterHttp(PentahoBasicProcessingFilter.java:88)
at org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
at org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:390)
at org.springframework.security.context.HttpSessionContextIntegrationFilter.doFilterHttp(HttpSessionContextIntegrationFilter.java:235)
at org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
at org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:390)
at org.pentaho.platform.web.http.filters.HttpSessionPentahoSessionIntegrationFilter.doFilter(HttpSessionPentahoSessionIntegrationFilter.java:265)
at org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:390)
at org.springframework.security.wrapper.SecurityContextHolderAwareRequestFilter.doFilterHttp(SecurityContextHolderAwareRequestFilter.java:91)
at org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
at org.springframework.security.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:390)
at org.springframework.security.util.FilterChainProxy.doFilter(FilterChainProxy.java:175)
at org.springframework.security.util.FilterToBeanProxy.doFilter(FilterToBeanProxy.java:99)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.pentaho.platform.web.http.filters.SystemStatusFilter.doFilter(SystemStatusFilter.java:59)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.pentaho.platform.web.http.filters.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:112)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.pentaho.platform.web.http.filters.WebappRootForwardingFilter.doFilter(WebappRootForwardingFilter.java:66)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:470)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:879)
at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:600)
at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1703)
at java.lang.Thread.run(Thread.java:662)
Caused by: org.pentaho.di.core.exception.KettleXMLException:
Unable to load job info from XML node
There was an error while reading the shared objects (continuing load) : {0}
Unexpected problem reading shared objects from XML file : null
Unable to load database connection info from XML node
Unable to create new database interface
database type with plugin id [OpenERPDatabaseMeta] couldn't be found!
at org.pentaho.di.job.JobMeta.loadXML(JobMeta.java:1345)
at org.pentaho.di.job.JobMeta.loadXML(JobMeta.java:1093)
at org.pentaho.di.job.JobMeta.loadXML(JobMeta.java:1062)
at org.pentaho.di.job.JobMeta.<init>(JobMeta.java:951)
... 81 more
Caused by: org.pentaho.di.core.exception.KettleXMLException:
There was an error while reading the shared objects (continuing load) : {0}
Unexpected problem reading shared objects from XML file : null
Unable to load database connection info from XML node
Unable to create new database interface
database type with plugin id [OpenERPDatabaseMeta] couldn't be found!
at org.pentaho.di.job.JobMeta.loadXML(JobMeta.java:1177)
... 84 more
Caused by: org.pentaho.di.core.exception.KettleXMLException:
Unexpected problem reading shared objects from XML file : null
Unable to load database connection info from XML node
Unable to create new database interface
database type with plugin id [OpenERPDatabaseMeta] couldn't be found!
at org.pentaho.di.shared.SharedObjects.<init>(SharedObjects.java:184)
at org.pentaho.di.job.JobMeta.readSharedObjects(JobMeta.java:1362)
at org.pentaho.di.job.JobMeta.loadXML(JobMeta.java:1172)
... 84 more
Caused by: org.pentaho.di.core.exception.KettleXMLException:
Unable to load database connection info from XML node
Unable to create new database interface
database type with plugin id [OpenERPDatabaseMeta] couldn't be found!
at org.pentaho.di.core.database.DatabaseMeta.<init>(DatabaseMeta.java:903)
at org.pentaho.di.shared.SharedObjects.<init>(SharedObjects.java:131)
... 86 more
Caused by: org.pentaho.di.core.exception.KettleXMLException:
Unable to create new database interface
database type with plugin id [OpenERPDatabaseMeta] couldn't be found!
at org.pentaho.di.core.database.DatabaseMeta.<init>(DatabaseMeta.java:869)
... 87 more
Caused by: org.pentaho.di.core.exception.KettleDatabaseException:
database type with plugin id [OpenERPDatabaseMeta] couldn't be found!
at org.pentaho.di.core.database.DatabaseMeta.findDatabaseInterface(DatabaseMeta.java:521)
at org.pentaho.di.core.database.DatabaseMeta.getDatabaseInterface(DatabaseMeta.java:497)
at org.pentaho.di.core.database.DatabaseMeta.<init>(DatabaseMeta.java:866)
... 87 more
↧
February 18, 2014, 10:06 pm
Hi All
Just trying installing CE 5.0.1, It startup and I am able to log into "http://localhost:8080/pentaho/" using the demo users, but I could see some error messages at the end of the log files it says that
Quote:
0:02:12,520 ERROR [GenericServlet] GenericServlet.ERROR_0004 - Resource /jpivot/jpivot/messages_supported_languages.properties not found in plugin jpivot
Like to get advice why this error is comming when the user logs in
I checked the log files by login and loginout using the demo users, each time the user logs in this message comes in
Please advice me why this error message is coming
↧
↧
February 18, 2014, 10:21 pm
Hi All
I am using Pentaho CE 5.0.1.A CE, installed it and getting familar with the interface.
I was looking at Market Place, I can add modules, but I did not see interface to remove the modules which added using market place, what if added some modules and later I wanted to remove it, how could I do it.
Guidance and advice requested
Thanks
Joseph John
↧
February 19, 2014, 2:59 am
Hello,
I am working on pentaho-plugin development, I need to leverage the Mondrian Datasource Import API(especially, org.pentaho.platform.plugin.action.mondrian.catalog.MondrianCatalogHelper) to list the catalogs.
But the API call fails with following exception, at the time of plugin initialization. I understand that,with Pentaho 5.0, it reads the connection metadata from "/etc/mondrian/<catalog_name>/metadata" instead of datasources.xml.
Can you please help me figure out the issue?
Reference number: 08e2cfdb-59a3-470b-a32e-018b8081e950
at org.pentaho.platform.repository2.unified.ExceptionLoggingDecorator.callLogThrow(ExceptionLoggingDecorator.java:476)
at org.pentaho.platform.repository2.unified.ExceptionLoggingDecorator.getFile(ExceptionLoggingDecorator.java:238)
at org.pentaho.platform.plugin.action.mondrian.catalog.MondrianCatalogHelper.generateInMemoryDatasourcesXml(MondrianCatalogHelper.java:299)
at org.pentaho.platform.plugin.action.mondrian.catalog.MondrianCatalogHelper.makeDataSources(MondrianCatalogHelper.java:251)
at org.pentaho.platform.plugin.action.mondrian.catalog.MondrianCatalogHelper.init(MondrianCatalogHelper.java:222)
at ......................
Thanks,
Sujen
↧
February 19, 2014, 3:20 am
Hello,
I installed bi-server 5.0.1 CE from the manual zip. I get in my logs the following error(s):
ERROR [org.pentaho.platform.engine.services.solution.SolutionEngine] :SOLUTION-ENGINE:: SolutionEngine.ERROR_0003 - No solution path specified
Without any stack trace. The BI server works fine. I tried to change the path to the pentaho-solutions folder under the web.xml:
<context-param>
<param-name>solution-path</param-name>
<param-value>path/to/pentaho-solutions</param-value>
</context-param>
Without any significant change (nothing changed whether the path is specified or not).
The jackrabbit configuration (pentaho-solutions/system/jackrabbit/repository.xml) is the default one.
What could be the cause for this error message?
Thanks!
↧
February 19, 2014, 10:29 am
Hi All,
I am new to Pentaho, need your suggessions or answers so that our organization can go or not go for Pentaho BI, following are my concerns
(My major concerns are from 1 to 5, so requesting you all to at least give me a hint).
1. Can we create drill down dashboards with Pentaho CDE (for BI Version 4.5 CE), if yes, then any documentation in any form ?
2. Can we integrate Pentaho bi server with already existing tomcat, which i already had it prior to installing Pentaho BI ?
3.what are the different type of schemas available for me while creating cubes and what are the advantages of star schema ?
4. how can we upgrade pentaho bi both Community Edition or Enterprise Edition ?
5.how can we authenticate pentaho bi for 3rd party system ?
6. how to change log file of kettle 4.4.0 (instead of displaying it to kettle output console/tab) ?
7. My existing Java Application uses Apache DDLUtils to generate database schema which is very complex and large in size, so when i am using xml component, kettle is getting hanged for 15 mins, so which parser it uses for traversing XML structure (SAX or DOM), where these settings are defined and how to change it ?
8. how to assign one datasource per user or different datasources to different users (just like roles) ?
9. how to create a burst report ?
10. what are perconditions in report designer ?
Regards,
S.A. Mateen
↧
↧
February 20, 2014, 12:11 am
Hi People,
I have started working as a Pentaho Admin for an MNC ,and will have to take care of migration,deployments and stuff.Working in linux server.It will be helpful if I can get hold of Docs which will be helpful to understand Pentaho from Admin point of view .
Your help is much appreciated.
Thanks ..:)
↧
February 20, 2014, 5:31 am
Hi every body
I have a problem to create a postgresql datasource in BI server.
Here are the steps I followed :
1 - Install ubuntu server (12.04 LTS)
2 - Install postgresql 9.1
3 - Install open-jdk7
4 - Install Pentaho BI Server
5 - Install postgresql jdbc connector (postgresql-9.3-1100.jdbc41.jar in /tomcat/lib)
Using another computer, I try to connect in pentaho ! ==> everything is ok
but when I want to create a datasource using datasource manager i have an error :
also, the database is remotely accessible.
Where is the problem ? can someone help me please ?
Thanks in advance
↧
February 20, 2014, 9:07 am
I'm trying to create an analysis view for two data sources but I keep getting the message "This page cannot be accessed directly. It must be linked to from other pages".
I created the first datasource with the schema workbench (which works as expected on the schema workbench with MDX queries), then I published it on the bi server user console with no problem. When I go to the New Analysis view on the user console I can select it from the drop down list, but then I get the above error message.
The same happens with the otther datasource, that I created through the user console --> Create New Data Source. Connection ton Mysql server is ok and the new datasource is created as well.
I have checked the datasources.xml and the catalogs for both the data sources are listed in it. The definition tags contain the correct paths for both of them, and they use the same data connection which is configured and tested properly on the administrator console
<Catalog name="betnwin">
<DataSourceInfo>Provider=mondrian;DataSource=bwin</DataSourceInfo>
<Definition>solution:/bwin/betnwin.xml</Definition>
</Catalog>
<Catalog name="bwin">
<DataSourceInfo>Provider=mondrian;DataSource=bwin</DataSourceInfo>
<Definition>solution:admin/resources/metadata/bwin.mondrian.xml</Definition>
</Catalog>
I'm looking at the pentaho.log and I can point out these lines of the stack trace:
2014-02-20 18:25:23,201 ERROR [org.pentaho.platform.util.logging.Logger] Error end:
2014-02-20 18:25:23,202 ERROR [org.pentaho.platform.util.logging.Logger] misc-MondrianModelComponent: MondrianModel.ERROR_0001 - getInitialQuery(): Connection is not valid: {DataSource=bwin, PoolNeeded=false, Provider=mondrian, Catalog=solution:/bwin/betnwin.xml}
2014-02-20 18:25:23,202 ERROR [org.pentaho.platform.plugin.action.mondrian.PivotViewComponent] 98f90c6c-9a4b-11e3-82ff-01fd8d273dc9:COMPONENT:context-68214025-1392913523093:1392913522860.analysisview.xactionPivotView.ERROR_0010 - Query generation failed
I googled as a maniac during the last days but I cannot resolve this error... Is there any other file, like the datasources.xml that I should configure as well? I mean something like mondrianconnection.properties maybe?
I'm using Mysql server and bi server 4.8.0 stable version.
I have attached the full log file.
Thank you in advance for your time
↧
February 20, 2014, 10:30 am
I am new to Pentaho - I normally use the Microsoft stack but a client has asked me to investigate if open source options are feasible for a forthcoming BI project.
I have installed the community edition of BI Server (5.0.1) on a Windows server box and not changed any of the default settings.
I have built a simple cube in Mondrian to take data from a MySQL database. I can view the cube using the jPivot View option in the user console and drill down on dimensions and it seems to work well. I would now like to view it by passing an MDX command to it using PHP. The intention would is to build a web service that can be called by a range of technologies such as Flash to display the contents of the cube.
I have been trying to use OLAP4PHP to view it, but I am getting an error message saying I cannot connect with an HTML error 500. I understand OLAP4PHP requires an XMLA connection.
If I try and view the URL in a browser (I am looking at
http://myserver:8080/pentaho/Xmla), I get a 405 error saying GET is not supported by the URL.
The first thing to do would be to make sure the XMLA connection is working. How can I test if the XMLA connection is working and what can I do to troubleshoot any problems?
↧
↧
February 21, 2014, 2:59 am
Hi All,,
I am integrating cde dashboard into another portal on a different domain. I am using div integration and embedding the headers and the contents .
I am observing that when
/pentaho/content/cda/doQuery? is called from the external portal, the response header received back from the pentaho server is the login page
- HTTP/1.1 302 Moved TemporarilyServer: Apache-Coyote/1.1Set-Cookie: JSESSIONID=F49755982F25501BC947C58E05259ACD; Path=/pentahoLocation: http://<hostname>:8080/pentaho/Login;jsessionid=F49755982F25501BC947C58E05259ACDContent-Length: 0Date: Fri, 21 Feb 2014 10:53:00 GMT
Hence cda response is in correct.
Even when I pass the complete URL on a new browser window the pentaho login page is displayed.
Is there anyway I can bypass the pentaho login page while calling cda/doQuery htmlrequest
regards,
Vipul
↧
February 24, 2014, 12:49 am
Pentaho 5 is great, but we'd really like to be able to access the contents of "pentaho-solutions" from outside Pentaho, to be able to take advantage of JCR versioning and other goodies.
FileVault looks really nice, and Toromiro would be useful for debugging, but as far as we know they both need a URL to the JCR API.
Does Pentaho offer the usual Jackrabbit service API somewhere? We've looked around and we could only find the /api/repository/... API, which does not seem to be the API that Toromiro or FileVault are looking for.
↧
February 24, 2014, 4:14 am
Hi All,
I am new to Pentaho BI, i have tried to integrate my Java web application with tomcat (which comes along with BI server) , but when i deploy it and restart tomcat, its not getting started, my main aim is to use only tomcat within single system, so
Can i integrate Pentaho bi server with already existing tomcat, which i already had it prior to installing Pentaho BI ?
Regards,
S.A. Mateen
↧