Open Closed

Logout Users #8934


User avatar
0
samalik created

I need to log out all logged-in users upon execution of a background worker (HangfireBackgroundWorkerBase). Also, I need the action inserted in the security log against this to be 'Forced Logout' instead of 'Logout'. How can I do that?

  • ABP Framework version: v8.1

  • UI Type: MVC

  • Database System: EF Core (SQL Serve)

  • **Template Type: **: Application Template

  • **Tiered (for MVC) **: No


17 Answer(s)
  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    You can do that after enabling session management. You can remove all sessions, and then the user will log out.

    see https://abp.io/docs/latest/modules/identity/session-management#how-it-works

    Inject the ISecurityLogManager to add new logs.

    await _securityLogManager.SaveAsync(securityLog =>
    {
        securityLog.Identity = "Test";
        securityLog.Action = "Test-Action";
        securityLog.UserName = "Test-User";
    });
    

    https://abp.io/docs/latest/modules/identity/session-management
    https://abp.io/docs/latest/modules/account/session-management

  • User Avatar
    0
    samalik created

    Hi. Thank you for your response, Maliming.
    So after having session management enabled, how can I programmatically revoke user sessions?

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    how can I programmatically revoke user sessions?

    There are few method to revoke session in IdentitySessionManager , You can inject it then call the revoke method.

     RevokeAsync(Guid id)
     RevokeAsync(string sessionId)
     RevokeAsync(IdentitySession session)
     RevokeAllAsync(Guid userId, Guid? exceptSessionId = null)
     RevokeAllAsync(Guid userId, string device, Guid? exceptSessionId = null)
    
  • User Avatar
    0
    samalik created

    Hi.
    So what is meant by enabling session management in your first reply? I see the sessions are being handled by default in the application.

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    Yes, it requires your abp packages >= 8.2

  • User Avatar
    0
    samalik created

    Hi,
    So after revoking sessions, I need users to immediately be logged out from the system but I see the users are still able to use the system. How can I force the users to login again as soon as the sessions are revoked.

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    So after revoking sessions

    How did you revoke sessions?

    Do you have app.UseDynamicClaims(); in all your backend apps?

    Thanks.

  • User Avatar
    0
    samalik created

    We have disabled the dynamic claims. Is it required to enable it to achieve the purpose?

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    Yes. This session feature depends on the Dynamic Claims

  • User Avatar
    0
    samalik created

    I enabled the dynamic claims, and I am using RevokeAsync(IdentitySession session) to revoke the session of the user. But the problem still persists.

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    Can you share the debug logs of all your apps?

    https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems

    Thanks.

  • User Avatar
    0
    samalik created

    Hi. Is there an option to attach a text file?

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    You can share it by email or https://wetransfer.com/

    liming.ma@volosoft.com

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    Please do that:

    1. Remove logst.txt file of all websites

    2. Enable debug logs.

    3. Run all of your apps.

    4. Reproduce the problem

    5. Share all logs.txt of all websites

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    I can see the session all exist in the cache.

    Can you share your revoke code?

    Are you sue the sessions are revoked by IdentitySessionManager?

    You can enable the EF Core debug to see the revoke SQL. see https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems

    Thanks.

  • User Avatar
    0
    samalik created

    Hi, Maliming
    I am using RevokeAsync(session) method of the IdentitySessionManager object as shown below. And yes, I am sure that sessions are revoked using this piece of code because no session is found in the sessions list of the user after running this piece of code. I also made sure via debugging this piece of code.

    var sessions = await _identitySessionManager.GetListAsync();
    foreach (var _session in sessions)
    {
    await _identitySessionManager.RevokeAsync(_session);
    }
    await uow.SaveChangesAsync();

  • User Avatar
    0
    maliming created
    Support Team Fullstack Developer

    hi

    Your project uses memory cache. Are the revoke code and your account on the same website?

    Can you share a screenshot of your project structure?

    Thanks.

Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
Do you need assistance from an ABP expert?
Schedule a Meeting
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v9.2.0-preview. Updated on March 25, 2025, 11:10