Issues with users creation in flowable-idm app

Hi,

I have faced with challenge. I created users but after restarting Tomcat or reloading ‘flowable-idm’ app, all previously created users disappeared. Please tell me what I need to check or/and change ?

Thanks!

Hi Zholaman,

Is your flowable-idm app pointing to H2 or external DB like mysql or postgress?

nizam

Hi nizam,

my instance is pointing to the internal H2 DB, here is an option from ‘flowable-ui-app.properties’ file of ‘flowable-dmi’:

datasource.driver=org.h2.Driver
datasource.url=jdbc:h2:mem:flowable;DB_CLOSE_DELAY=-1

Hi Zholaman,

That’s why you have problems with users disappeared because H2 is in-memory database. Your instance should be pointing to external db e.g. mysql and the like.

nizam

Thank you a lot nizam!