Connect to the Maximo database (IP)
Execute the following query :
select * from MAXPROPVALUE where propname='mxe.enableConcurrentCheck'
If the value of the PROPVALUE field is 1, then a user can only have a single session on maximo. If it is 0, then the user can have multiple concurrent sessions in Maximo.
To update this value if required, execute the following SQL statement :
# For Multiple Session
UPDATE MAXPROPVALUE SET PROPVALUE='0' WHERE PROPNAME='mxe.enableConcurrentCheck'
#For Single Session
UPDATE MAXPROPVALUE SET PROPVALUE='1' WHERE PROPNAME='mxe.enableConcurrentCheck'