Flowable to postgres, not programmatically

Configure flowable-idm to work with postgres, having the app wars deployed on tomcat.

I already undocumented the following lines in the flowable-ui-app.properties file:
datasource.driver=org.postgresql.Driver
datasource.url=jdbc:postgresql://localhost:5432/flowableidm

I installed postgres in my Ubuntu machine.

What else do I need to configure, please take into account I’m not working programmatically.

Thanks.

Error log:
com.mchange.v2.c3p0.DriverManagerDataSource - Could not load driverClass org.postgresql.Driver
java.lang.ClassNotFoundException: org.postgresql.Driver

Hi,
These are the things I revised when connectiong with postgres:

  • Did you place postgres jar in TOMCAT_HOME/lib?
  • Did you uncommented “datasource.username=” and “datasource.password=” writing your database credentials?
  • Did you revised that the ports specified in the urls in the “flowable-ui-app.properties” file match your tomcat port?

Regarding the log I think that the first point may be your problem.

I hope it helps,

Clara