Hi all,
When I change the passwords for the default users (admin, fozzie, etc) from the base install, it causes problems.
When I change the admin password, I can login to the idm app fine. However, trying to use any other app results in a redirect to the following url and the page shows the login prompt. If I try to login at that admin prompt, it refreshes back to the same page with empty fields for user/pw.
Example when trying to access the admin app:
http://flowable.myurl.com:8080/flowable-idm/#/login?redirectOnAuthSuccess=true&redirectUrl=http:%2F%2F/flowable.myurl.com:8080%2Fflowable-admin%2F
When I change the passwords for the other users (fozzie, etc), I can’t get into any app as I get an “invalid credentials” notification.
When I look inside the database (postgresql), I can see that the passwords have changed in the act_id_user table, and that they match the passwords I’m trying to use.
When I change the passwords back to any of the user’s original passwords, I can access all apps fine.
My db user has full privileges for all flowable tables, and execute and usage privilege on the schema.
My docker compose file (doesn’t use docker-compose formatting standards, it’s for a kubernetes based system)
ports:
-8080:8080
-9977:9977
env_vars:
datasource.driver: org.postgresql.Driver
datasource.url: jdbc:postgresql://postgresql.host.local:5432/sys_bpm
datasource.username: myuser
datasource.password: 1234
idm.app.url: http://flowable.host.local:8080/flowable-idm
idm.app.redirect.url: http://flowable.myurl.com:8080/flowable-idm
rest.process.app.host: http://flowable.host.local
rest.process.app.port: 9977
rest.dmn.app.host: http://flowable.host.local
rest.dmn.app.port: 9977
rest.form.app.host: http://flowable.host.local
rest.form.app.port: 9977
rest.content.app.host: http://flowable.host.local
rest.content.app.port: 9977
Any ideas about how to fix this?