Null
EIA component: configuration method for kicking off the terminals already online when the maximum number of single accounts online exceeds the limit:
1. When setting the limit of the number of single accounts online to 1, you can set the "Log off Duplicate Account" function to enable/disable to control whether the new terminal can go online successfully.
Log off Duplicate Account: The number of accessed users online is limited to 1, and the user is already online and logged in with the same name account on another terminal. If this parameter is enabled, the new terminal will be online successfully and the original terminal will be offline; if this parameter is disabled, the original terminal will remain online and the new terminal will fail to log in.
2. When setting the number of single account online exceeds 1, how to configure the function of kicking off the terminal that has been online before.
For example, if you limit the maximum number of online terminals to 4, and 4 terminals are already online, you can kick off the terminal that was online for the first time when the 5th terminal comes online, and let the 5th terminal come online.
1) When the database used is sql server, how to set.
Execute the following sql command in the database to look up the corresponding records
select * from ead.ead.TBL_PARAMETER where PARAMETER_NAME ="FORCE_LOGOFF_WHEN_MULTI_ONLINE"
Execute the following sql command to modify the parameter value, after the modification, the VALUE value of the above figure becomes 1 which means it takes effect.
update ead.ead.TBL_PARAMETER set VALUE = 1 where PARAMETER_NAME ="FORCE_LOGOFF_WHEN_MULTI_ONLINE";
2) When a mariadb database is used, how to set.
use ead
Query the corresponding record.
select * from TBL_PARAMETER where PARAMETER_NAME = "FORCE_LOGOFF_WHEN_MULTI_ONLINE";
Modify the parameters.
update TBL_PARAMETER set VALUE = 1 where PARAMETER_NAME = "FORCE_LOGOFF_WHEN_MULTI_ONLINE";
3、After updating the database you need to click Validate under - User - User Access Policy - Service Parameters.
The characters in the execution database commands are in the English input method, and the; at the end of the command must be executed together.
The execution of this database command does not affect the services already in use on the existing network, and the new terminal will be kicked off the user whose account is online for the first time when the limited number of online terminals is reached.