Issue with Changing tomcat port for Flowable-Modeler

Newbie question. I just installed flowable today. I changed the tomcat port from 8080 to 18080 in $CATALINA_HOME/conf/server.xml .
After this, I am able to access the IDM app from http://localhost:18080/flowable-idm/
However, when I try to access the modeler or task apps, I am unable to. when I type http://localhost:18080/flowable-modeler on my browser, I am redirected to
localhost:8080/flowable-idm/#/login?redirectOnAuthSuccess=true&redirectUrl=http://localhost:18080/flowable-modeler/

Manually changing the URL to localhost:18080/flowable-idm/#/login?redirectOnAuthSuccess=true&redirectUrl=http://localhost:18080/flowable-modeler/ also does not help.

Please, can someone suggest if I am doing something wrong?
Flowable version: 6.4.2
Tomcat version: 9.0.24

You have to change the flowable.common.app.idm-url property to http://localhost:18080/flowable-idm see:

https://www.flowable.org/docs/userguide/index.html#_flowable_ui_applications_configurations

For an example check out:

1 Like

Many thanks. That is exactly what I had missed.