Mendix Session Timeout

0
I'm currently using Mendix 10.24.3 version deployed in Mendix Service Console not an Cloud deployment. I need to change the Mendix User session timeout as it gets logged out after 10 mins if no activity performed. How can we achieve it?
asked
2 answers
1

Hello Sangitkumar Cinraj,

 

This is a setting that you can configure, for more info visit the links :

 

https://docs.mendix.com/refguide/custom-settings/#SessionTimeout

https://docs.mendix.com/refguide/session-management/

 

Maybe also interesting is this module with a session warning :

 

https://marketplace.mendix.com/link/component/113622

 

However, this is not a platform supported module, so there is no guarantee that this module always stays up to date.

 

Good luck!

answered
0

Can you try to add SessionTimeout: 600000 (60*10*1000 ms) parameter under Runtime in your settings yaml?

 

Runtime:

  SessionTimeout: 600000

 

answered