Blocking login : No license issue in Mendix 10

0
Question:I've deployed my application on an on-premises server running Mendix 10.24.22. The server is for testing and doesn't have a license. The app starts, but I'm running into login issues: MxAdmin redirects back to the login page, and regular users get an error stating "The current license does not allow more users to sign in." Other apps on versions 8 and 9 on the same server work fine without a license. Why is this happening only with Mendix 10?Context:Mendix version: 10.24.22Deployment: On-premises server (testing environment)No license appliedApplication starts successfullyOther Mendix 8 and 9 apps on the same server function without license restrictionsError Message:MxAdmin login: Redirected back to login pageUser login: "The current license does not allow more users to sign in."
asked
1 answers
0

Hi Neetika,

Since you're running the application without a license, please also check the existing user sessions in the database.


You can open the database and check the System.Session entity/table. The unlicensed version has a limit of 6 active sessions. If the maximum number of sessions has already been reached, new users won't be able to log in and you may get the "The current license does not allow more users to sign in" message.


For a test environment, you can remove the existing/stale sessions from the Session table and then logging in again.


Also make sure you don't have multiple active sessions consuming the available limit.


Kindly mark this as the accepted answer if it helps.

answered